From 2eaeaad96039bc271aaeccc90bcc72e98478dad4 Mon Sep 17 00:00:00 2001 From: Grigory Pomadchin Date: Mon, 3 Aug 2026 02:47:56 -0400 Subject: [PATCH 1/2] Do the full sweep through projections and align it with PROJ --- .gitignore | 2 + CHANGELOG.md | 34 + .../proj4j/parser/DatumParameters.java | 24 +- .../proj4j/parser/Proj4Keyword.java | 18 + .../proj4j/parser/Proj4Parser.java | 56 +- .../proj4j/proj/AitoffProjection.java | 19 +- .../proj4j/proj/BipolarProjection.java | 3 +- .../proj4j/proj/BonneProjection.java | 5 +- .../proj4j/proj/CassiniProjection.java | 2 +- .../proj/CylindricalEqualAreaProjection.java | 13 +- .../proj/EquidistantConicProjection.java | 155 +- .../proj4j/proj/HammerProjection.java | 9 +- .../proj4j/proj/KrovakProjection.java | 38 +- .../proj4j/proj/LagrangeProjection.java | 16 +- .../proj/LambertEqualAreaConicProjection.java | 18 + .../proj4j/proj/LandsatProjection.java | 33 +- .../proj4j/proj/LoximuthalProjection.java | 2 +- ...ydeThomasFlatPolarParabolicProjection.java | 6 +- ...BrydeThomasFlatPolarQuarticProjection.java | 9 +- ...McBrydeThomasFlatPolarSine2Projection.java | 11 +- .../proj4j/proj/MercatorProjection.java | 18 +- .../proj4j/proj/NellProjection.java | 10 +- .../proj/ObliqueMercatorProjection.java | 142 +- .../proj4j/proj/PerspectiveProjection.java | 33 +- .../proj4j/proj/PlateCarreeProjection.java | 50 +- .../proj4j/proj/PolyconicProjection.java | 6 +- .../locationtech/proj4j/proj/Projection.java | 10 + .../proj4j/proj/PutninsP2Projection.java | 16 +- .../proj/RectangularPolyconicProjection.java | 7 +- .../proj4j/proj/RobinsonProjection.java | 4 +- .../proj4j/proj/SimpleConicProjection.java | 41 +- .../proj/TransverseMercatorProjection.java | 37 +- .../UrmaevFlatPolarSinusoidalProjection.java | 6 +- .../proj4j/proj/Wagner2Projection.java | 6 +- .../proj4j/proj/WinkelTripelProjection.java | 2 +- .../org/locationtech/proj4j/units/Units.java | 15 +- .../proj4j/CoordinateTransformTest.java | 16 +- .../proj4j/ProjAlignmentTest.java | 725 ++++++ .../proj4j/datum/DatumShiftTest.java | 8 +- .../proj4j/datum/TransformerTypeTest.java | 2 +- core/src/test/resources/proj4-epsg.csv | 2300 ++++++++--------- 41 files changed, 2509 insertions(+), 1418 deletions(-) create mode 100644 core/src/test/java/org/locationtech/proj4j/ProjAlignmentTest.java diff --git a/.gitignore b/.gitignore index 296d5d6..83733c0 100755 --- a/.gitignore +++ b/.gitignore @@ -36,3 +36,5 @@ _SUCCESS tags .vscode .metals + +.claude diff --git a/CHANGELOG.md b/CHANGELOG.md index 1da8c97..310fb75 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,8 +7,42 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Changed +- `+f` is the flattening and `+rf` the reciprocal flattening, as in PROJ. The two were swapped, so definitions that passed a `1/f` value under `+f` (e.g. `+f=298.257222101`) built a nonsensical ellipsoid; they must now use `+rf`. PROJ rejects such a `+f` value outright +- Transverse Mercator (`+proj=tmerc`) uses the exact Poder/Engsager algorithm for ellipsoids, which has been PROJ's default since 6.0, and accepts `+approx` to select the Evenden/Snyder series. Inside a normal zone the two agree to well under a millimetre; 40 degrees from the central meridian they differ by ~1.5 km, and beyond ~80 degrees the series returns garbage where the exact algorithm reports the point as outside the projection domain +- Equidistant Cylindrical (`+proj=eqc`) implements the ellipsoidal method (EPSG:1028) as well as the spherical one (EPSG:1029), matching PROJ 9.8.0. Northings on an ellipsoid are now meridional arc lengths rather than `a * phi` + ### Fixed - Oblique Mercator: compute the natural-origin (uc) offset from the central-line azimuth (`+alpha`) instead of the rectified bearing (`+gamma`), so the projection centre maps to the false easting/northing when `+gamma` differs from `+alpha` (e.g. an explicit `+gamma=0` with a non-zero azimuth) +- Oblique Mercator: `+alpha` alone no longer behaves as `+gamma=0`, and `+gamma` alone no longer falls back to an azimuth of -45 degrees. Both parameters are now tracked as given, as PROJ does, and the two-point form (`+lat_1`/`+lon_1`/`+lat_2`/`+lon_2`) is reachable +- Oblique Mercator: use `atan2` in the forward transform, as PROJ does; the previous `atan(y/x)` plus a fixed `+PI` correction picked the wrong branch for points more than 90 degrees from the central line, and the near-meridian fallback had a spurious `B` factor +- `+R` defines a sphere. It used to set only the semi-major axis and leave the ellipsoid's eccentricity in place, which shifted every projection with an ellipsoidal branch (`merc`, `tmerc`, `laea`, `aea`, `cea`, `leac`, `lcc`, `stere`, `sterea`, `somerc`, `aeqd`, `omerc`, `geos`, `cass`) by tens to hundreds of kilometres +- Mercator: `+lat_ts` was ignored; it now sets the scale factor as in PROJ (`cos(lat_ts)` on a sphere, `msfn(lat_ts)` on an ellipsoid) +- Equal Area Cylindrical: a supplied `+k_0` was overwritten by `cos(lat_ts)` even when `+lat_ts` was absent +- The Snyder conics (`euler`, `murd1`, `murd2`, `murd3`, `pconic`, `vitk1`) ignored `+lat_1`/`+lat_2` and used hardcoded 30/60 degree parallels; their shared inverse also used the unshifted northing in `atan2` and dropped the sign flip for a negative cone constant +- Equidistant Conic (`+proj=eqdc`) was not PROJ's algorithm at all: it used a Lambert-Conformal-style formulation with a hardcoded eccentricity of 0.822719, a unit radius, and hardcoded standard parallels, and its inverse was never wired into the framework. Rewritten from PROJ's `eqdc.cpp` +- Bonne: `+lat_1` was ignored and the standard parallel was pinned at 90 degrees (the Werner limit) +- Polyconic: the ellipsoidal branch was unreachable (`spherical` was forced true), its forward transform used an uninitialised value in place of the longitude, and its inverse used `1/es` where PROJ uses `1 - es` +- Cassini: sign error in the ellipsoidal forward easting series (`C1 - ...` instead of `C1 + ...`) +- Rectangular Polyconic: `+lat_ts` and `+lat_0` were ignored +- Transverse Mercator: the spherical branch applied the scale factor twice to the easting +- Winkel Tripel: `+lat_1` was ignored, and the Winkel constant was being passed as the latitude of origin +- Krovak: PROJ's fixed defaults (Bessel 1841, `lat_0` 49°30′N, `lon_0` 42°30′ of Ferro − 17°40′, `k_0` 0.9999) are applied when the definition omits them, and `+czech` selects the native westing/southing orientation +- Bipolar Conic: dropped a spurious `lon_0` default of −90 degrees that PROJ does not have +- Near-sided Perspective (`+proj=nsper`): `+h` threw `NoSuchElementException`, the aspect (oblique/equatorial/polar) was hardcoded to equatorial, and the far-side-of-the-globe domain check was commented out +- Space Oblique Mercator for Landsat (`+proj=lsat`): `+lsat` and `+path` were rejected as unsupported and the satellite/path were hardcoded to 1/120 +- Hammer: `+W` and `+M` were rejected as unsupported, and the initialisation overwrote whatever was set with the defaults +- Lagrange: `+W` was rejected as unsupported, and the default was 1.4 instead of PROJ's 2 +- Urmaev Flat-Polar Sinusoidal (`+proj=urmfps`): `+n` was rejected as unsupported +- Lambert Equal Area Conic (`+proj=leac`): `+south` threw `NoSuchElementException` +- `putp2`, `nell`, `mbtfpq`, `mbt_fps`: the Newton iteration ran on the output northing instead of the latitude, so it never converged and the unconverged latitude was used +- `wag1`/`urmfps`, `wag2`, `mbtfpp`: the transformed latitude was computed and then discarded, and the raw latitude used in its place +- Loximuthal: a missing `abs()` in the near-parallel test sent every point south of `+lat_1` down the wrong branch +- Robinson: latitudes landing exactly on a 5-degree table node selected the node below through `floor()` rounding +- `+units=ch`, `+units=fath`, `+units=link` and `+units=us-ch` were silently treated as metres because those units, though defined, were missing from the lookup table; the Indian units (`ind-yd`, `ind-ft`, `ind-ch`) were added + +### Added +- `ProjAlignmentTest`, pinning 67 cases against values generated from raw PROJ pipelines and cross-checked on PROJ 9.5.1 and 9.6.0 ## [1.4.3] - 2026-06-02 diff --git a/core/src/main/java/org/locationtech/proj4j/parser/DatumParameters.java b/core/src/main/java/org/locationtech/proj4j/parser/DatumParameters.java index b84d3a7..dc2c74a 100755 --- a/core/src/main/java/org/locationtech/proj4j/parser/DatumParameters.java +++ b/core/src/main/java/org/locationtech/proj4j/parser/DatumParameters.java @@ -116,9 +116,14 @@ public void setES(double es) { this.es = es; } + /** + * Sets the reciprocal (inverse) flattening, {@code +rf}. + * PROJ: {@code f = 1/rf; es = 2f - f*f}. + */ public void setRF(double rf) { ellipsoid = null; // force user-defined ellipsoid - es = rf * (2. - rf); + double f = 1. / rf; + es = f * (2. - f); } public void setR_A() { @@ -126,10 +131,23 @@ public void setR_A() { a *= 1. - es * (SIXTH + es * (RA4 + es * RA6)); } + /** + * Sets the flattening, {@code +f}. + * PROJ: {@code es = 2f - f*f}. + */ public void setF(double f) { ellipsoid = null; // force user-defined ellipsoid - double rf = 1.0 / f; - es = rf * (2. - rf); + es = f * (2. - f); + } + + /** + * Sets the radius of the sphere, {@code +R}. + * PROJ: "specifying R overrules everything" - the ellipsoid becomes a sphere. + */ + public void setR(double r) { + ellipsoid = null; // force user-defined ellipsoid + a = r; + es = 0; } public double getA() { diff --git a/core/src/main/java/org/locationtech/proj4j/parser/Proj4Keyword.java b/core/src/main/java/org/locationtech/proj4j/parser/Proj4Keyword.java index 6c84c86..1e89261 100755 --- a/core/src/main/java/org/locationtech/proj4j/parser/Proj4Keyword.java +++ b/core/src/main/java/org/locationtech/proj4j/parser/Proj4Keyword.java @@ -38,6 +38,8 @@ public class Proj4Keyword { public static final String lat_0 = "lat_0"; public static final String lat_1 = "lat_1"; public static final String lat_2 = "lat_2"; + public static final String lon_1 = "lon_1"; + public static final String lon_2 = "lon_2"; public static final String lon_0 = "lon_0"; public static final String lonc = "lonc"; public static final String pm = "pm"; @@ -68,6 +70,13 @@ public class Proj4Keyword { public static final String no_defs = "no_defs"; public static final String wktext = "wktext"; public static final String no_uoff = "no_uoff"; + public static final String czech = "czech"; + public static final String approx = "approx"; + public static final String W = "W"; + public static final String M = "M"; + public static final String n = "n"; + public static final String lsat = "lsat"; + public static final String path = "path"; private static Set supportedParams = null; @@ -95,6 +104,8 @@ public static synchronized Set supportedParameters() { supportedParams.add(lat_0); supportedParams.add(lat_1); supportedParams.add(lat_2); + supportedParams.add(lon_1); + supportedParams.add(lon_2); supportedParams.add(lon_0); supportedParams.add(lonc); @@ -112,6 +123,13 @@ public static synchronized Set supportedParameters() { supportedParams.add(gamma); // Just for Oblique Mercator projection supportedParams.add(no_uoff); // Just for Oblique Mercator projection + supportedParams.add(czech); // Just for the Krovak projection + supportedParams.add(approx); // Transverse Mercator algorithm selection + supportedParams.add(W); // Hammer, Lagrange + supportedParams.add(M); // Hammer + supportedParams.add(n); // Urmaev Flat-Polar Sinusoidal + supportedParams.add(lsat); // Space Oblique Mercator for Landsat + supportedParams.add(path); // Space Oblique Mercator for Landsat supportedParams.add(zone); // Just for Transverse Mercator projection supportedParams.add(title); // no-op diff --git a/core/src/main/java/org/locationtech/proj4j/parser/Proj4Parser.java b/core/src/main/java/org/locationtech/proj4j/parser/Proj4Parser.java index b15950b..d811e30 100755 --- a/core/src/main/java/org/locationtech/proj4j/parser/Proj4Parser.java +++ b/core/src/main/java/org/locationtech/proj4j/parser/Proj4Parser.java @@ -24,6 +24,12 @@ import org.locationtech.proj4j.datum.Ellipsoid; import org.locationtech.proj4j.datum.Grid; import org.locationtech.proj4j.proj.ExtendedTransverseMercatorProjection; +import org.locationtech.proj4j.proj.HammerProjection; +import org.locationtech.proj4j.proj.KrovakProjection; +import org.locationtech.proj4j.proj.LandsatProjection; +import org.locationtech.proj4j.proj.ObliqueMercatorProjection; +import org.locationtech.proj4j.proj.LagrangeProjection; +import org.locationtech.proj4j.proj.UrmaevFlatPolarSinusoidalProjection; import org.locationtech.proj4j.proj.Projection; import org.locationtech.proj4j.proj.TransverseMercatorProjection; import org.locationtech.proj4j.units.Angle; @@ -168,11 +174,51 @@ private Projection parseProjection(Map params, Ellipsoid ellipsoid) { // this must be done last, since behaviour depends on other params being set (eg +south) if (projection instanceof TransverseMercatorProjection) { + if (params.containsKey(Proj4Keyword.approx)) + ((TransverseMercatorProjection) projection).setApprox(true); s = (String) params.get(Proj4Keyword.zone); if (s != null) ((TransverseMercatorProjection) projection).setUTMZone(Integer .parseInt(s)); } + if (projection instanceof HammerProjection) { + s = (String) params.get(Proj4Keyword.W); + if (s != null) + ((HammerProjection) projection).setW(Double.parseDouble(s)); + s = (String) params.get(Proj4Keyword.M); + if (s != null) + ((HammerProjection) projection).setM(Double.parseDouble(s)); + } + if (projection instanceof LagrangeProjection) { + s = (String) params.get(Proj4Keyword.W); + if (s != null) + ((LagrangeProjection) projection).setW(Double.parseDouble(s)); + } + if (projection instanceof UrmaevFlatPolarSinusoidalProjection) { + s = (String) params.get(Proj4Keyword.n); + if (s != null) + ((UrmaevFlatPolarSinusoidalProjection) projection).setN(Double.parseDouble(s)); + } + if (projection instanceof ObliqueMercatorProjection) { + s = (String) params.get(Proj4Keyword.lon_1); + if (s != null) + ((ObliqueMercatorProjection) projection).setProjectionLongitude1Degrees(parseAngle(s)); + s = (String) params.get(Proj4Keyword.lon_2); + if (s != null) + ((ObliqueMercatorProjection) projection).setProjectionLongitude2Degrees(parseAngle(s)); + } + if (projection instanceof LandsatProjection) { + s = (String) params.get(Proj4Keyword.lsat); + if (s != null) + ((LandsatProjection) projection).setLandsat(Integer.parseInt(s)); + s = (String) params.get(Proj4Keyword.path); + if (s != null) + ((LandsatProjection) projection).setPath(Integer.parseInt(s)); + } + if (projection instanceof KrovakProjection) { + if (params.containsKey(Proj4Keyword.czech)) + ((KrovakProjection) projection).setCzech(true); + } if (projection instanceof ExtendedTransverseMercatorProjection) { s = (String) params.get(Proj4Keyword.zone); if (s != null) @@ -245,9 +291,15 @@ private void parseEllipsoid(Map params, DatumParameters datumParam) { String s; /* - * // not supported by PROJ4 s = (String) params.get(Proj4Param.R); if (s != - * null) a = Double.parseDouble(s); + * Radius of the sphere, given in meters. As in PROJ, "specifying R overrules + * everything": the ellipsoid is a sphere of that radius, and +ellps, +datum + * and the shape parameters are ignored. */ + s = (String) params.get(Proj4Keyword.R); + if (s != null) { + datumParam.setR(Double.parseDouble(s)); + return; + } String code = (String) params.get(Proj4Keyword.ellps); if (code != null) { diff --git a/core/src/main/java/org/locationtech/proj4j/proj/AitoffProjection.java b/core/src/main/java/org/locationtech/proj4j/proj/AitoffProjection.java index 1df7218..22bccce 100644 --- a/core/src/main/java/org/locationtech/proj4j/proj/AitoffProjection.java +++ b/core/src/main/java/org/locationtech/proj4j/proj/AitoffProjection.java @@ -22,6 +22,7 @@ import java.util.Objects; import org.locationtech.proj4j.ProjCoordinate; +import org.locationtech.proj4j.ProjectionException; public class AitoffProjection extends PseudoCylindricalProjection { @@ -33,11 +34,18 @@ public class AitoffProjection extends PseudoCylindricalProjection { private double cosphi1 = 0; public AitoffProjection() { + // NaN marks "+lat_1 not given", so the Winkel Tripel default can be applied + projectionLatitude1 = Double.NaN; + } + + protected AitoffProjection(int type) { + this(); + winkel = type == WINKEL; } public AitoffProjection(int type, double projectionLatitude) { + this(type); this.projectionLatitude = projectionLatitude; - winkel = type == WINKEL; } public ProjCoordinate project(double lplam, double lpphi, ProjCoordinate out) { @@ -59,11 +67,10 @@ public ProjCoordinate project(double lplam, double lpphi, ProjCoordinate out) { public void initialize() { super.initialize(); if (winkel) { -//FIXME -// if (pj_param(P->params, "tlat_1").i) -// if ((cosphi1 = Math.cos(pj_param(P->params, "rlat_1").f)) == 0.) -// throw new IllegalArgumentException("-22") -// else /* 50d28' or acos(2/pi) */ + if (!Double.isNaN(projectionLatitude1)) { + if ((cosphi1 = Math.cos(projectionLatitude1)) == 0.) + throw new ProjectionException("Invalid value for lat_1: |lat_1| should be < 90"); + } else /* 50d28' or acos(2/pi) */ cosphi1 = 0.636619772367581343; } } diff --git a/core/src/main/java/org/locationtech/proj4j/proj/BipolarProjection.java b/core/src/main/java/org/locationtech/proj4j/proj/BipolarProjection.java index fb8eff8..23cdd75 100644 --- a/core/src/main/java/org/locationtech/proj4j/proj/BipolarProjection.java +++ b/core/src/main/java/org/locationtech/proj4j/proj/BipolarProjection.java @@ -50,7 +50,8 @@ public class BipolarProjection extends Projection { public BipolarProjection() { minLatitude = Math.toRadians(-80); maxLatitude = Math.toRadians(80); - projectionLongitude = Math.toRadians(-90); + // no lon_0 default: the projection constants already carry the bipolar + // orientation, and PROJ leaves lon_0 at 0 unless it is given minLongitude = Math.toRadians(-90); maxLongitude = Math.toRadians(90); } diff --git a/core/src/main/java/org/locationtech/proj4j/proj/BonneProjection.java b/core/src/main/java/org/locationtech/proj4j/proj/BonneProjection.java index ec37124..86045ae 100644 --- a/core/src/main/java/org/locationtech/proj4j/proj/BonneProjection.java +++ b/core/src/main/java/org/locationtech/proj4j/proj/BonneProjection.java @@ -94,10 +94,9 @@ public void initialize() { double c; -// phi1 = pj_param(params, "rlat_1").f; - phi1 = ProjectionMath.HALFPI; + phi1 = projectionLatitude1; if (Math.abs(phi1) < EPS10) - throw new ProjectionException("-23"); + throw new ProjectionException("Invalid value for lat_1: |lat_1| should be > 0"); if (!spherical) { en = ProjectionMath.enfn(es); m1 = ProjectionMath.mlfn(phi1, am1 = Math.sin(phi1), diff --git a/core/src/main/java/org/locationtech/proj4j/proj/CassiniProjection.java b/core/src/main/java/org/locationtech/proj4j/proj/CassiniProjection.java index 7533220..3a29c27 100644 --- a/core/src/main/java/org/locationtech/proj4j/proj/CassiniProjection.java +++ b/core/src/main/java/org/locationtech/proj4j/proj/CassiniProjection.java @@ -63,7 +63,7 @@ public ProjCoordinate project(double lplam, double lpphi, ProjCoordinate xy) { c *= es * c / (1 - es); a2 = a1 * a1; xy.x = n * a1 * (1. - a2 * t * - (C1 - (8. - t + 8. * c) * a2 * C2)); + (C1 + (8. - t + 8. * c) * a2 * C2)); xy.y -= m0 - n * tn * a2 * (.5 + (5. - t + 6. * c) * a2 * C3); } diff --git a/core/src/main/java/org/locationtech/proj4j/proj/CylindricalEqualAreaProjection.java b/core/src/main/java/org/locationtech/proj4j/proj/CylindricalEqualAreaProjection.java index 76b8a96..dc31a47 100644 --- a/core/src/main/java/org/locationtech/proj4j/proj/CylindricalEqualAreaProjection.java +++ b/core/src/main/java/org/locationtech/proj4j/proj/CylindricalEqualAreaProjection.java @@ -29,7 +29,8 @@ public class CylindricalEqualAreaProjection extends Projection { private double[] apa; public CylindricalEqualAreaProjection() { - this(0.0, 0.0, 0.0); + // NaN marks "+lat_ts not given", so that a supplied +k_0 survives + this(0.0, 0.0, Double.NaN); } public CylindricalEqualAreaProjection(double projectionLatitude, double projectionLongitude, double trueScaleLatitude) { @@ -41,9 +42,15 @@ public CylindricalEqualAreaProjection(double projectionLatitude, double projecti public void initialize() { super.initialize(); - double t = trueScaleLatitude; + double t = 0.0; - scaleFactor = Math.cos(t); + // as in PROJ, lat_ts defines the scale factor; without it +k_0 is used as given + if (!Double.isNaN(trueScaleLatitude)) { + t = trueScaleLatitude; + scaleFactor = Math.cos(t); + if (scaleFactor < 0.) + throw new ProjectionException("Invalid value for lat_ts: |lat_ts| should be <= 90"); + } if (es != 0) { t = Math.sin(t); scaleFactor /= Math.sqrt(1. - es * t * t); diff --git a/core/src/main/java/org/locationtech/proj4j/proj/EquidistantConicProjection.java b/core/src/main/java/org/locationtech/proj4j/proj/EquidistantConicProjection.java index ab7f582..273bcc4 100644 --- a/core/src/main/java/org/locationtech/proj4j/proj/EquidistantConicProjection.java +++ b/core/src/main/java/org/locationtech/proj4j/proj/EquidistantConicProjection.java @@ -20,104 +20,108 @@ package org.locationtech.proj4j.proj; import org.locationtech.proj4j.ProjCoordinate; +import org.locationtech.proj4j.ProjectionException; import org.locationtech.proj4j.util.ProjectionMath; /** - * The Equidistant Conic projection. + * The Equidistant Conic projection, {@code +proj=eqdc}. + * Requires {@code +lat_1} and {@code +lat_2}. */ public class EquidistantConicProjection extends ConicProjection { - private double standardLatitude1; - private double standardLatitude2; - - private double eccentricity = 0.822719; - private double eccentricity2 = eccentricity*eccentricity; - private double eccentricity4 = eccentricity2*eccentricity2; - private double eccentricity6 = eccentricity2*eccentricity4; - private double radius = 1; + private final static double EPS10 = 1.e-10; - private boolean northPole; - private double f, n, rho0; + private double phi1, phi2, n, rho0, c; + private double[] en; + private boolean ellips; public EquidistantConicProjection() { minLatitude = ProjectionMath.degToRad(10); maxLatitude = ProjectionMath.degToRad(70); minLongitude = ProjectionMath.degToRad(-90); maxLongitude = ProjectionMath.degToRad(90); - standardLatitude1 = Math.toDegrees( 60 ); - standardLatitude2 = Math.toDegrees( 20 ); + } + + public void initialize() { + super.initialize(); + double cosphi, sinphi; + boolean secant; + + phi1 = projectionLatitude1; + phi2 = projectionLatitude2; + + if (Math.abs(phi1) > ProjectionMath.HALFPI) + throw new ProjectionException("Invalid value for lat_1: |lat_1| should be <= 90"); + if (Math.abs(phi2) > ProjectionMath.HALFPI) + throw new ProjectionException("Invalid value for lat_2: |lat_2| should be <= 90"); + if (Math.abs(phi1 + phi2) < EPS10) + throw new ProjectionException("Invalid value for lat_1 and lat_2: |lat_1 + lat_2| should be > 0"); + + en = ProjectionMath.enfn(es); - initialize(ProjectionMath.degToRad(0), ProjectionMath.degToRad(37.5), standardLatitude1, standardLatitude2); + sinphi = Math.sin(phi1); + n = sinphi; + cosphi = Math.cos(phi1); + secant = Math.abs(phi1 - phi2) >= EPS10; + ellips = es > 0.; + if (ellips) { + double ml1, m1; + + m1 = ProjectionMath.msfn(sinphi, cosphi, es); + ml1 = ProjectionMath.mlfn(phi1, sinphi, cosphi, en); + if (secant) { /* secant cone */ + sinphi = Math.sin(phi2); + cosphi = Math.cos(phi2); + double ml2 = ProjectionMath.mlfn(phi2, sinphi, cosphi, en); + if (ml1 == ml2) + throw new ProjectionException("Eccentricity too close to 1"); + n = (m1 - ProjectionMath.msfn(sinphi, cosphi, es)) / (ml2 - ml1); + if (n == 0) + throw new ProjectionException("Invalid value for eccentricity"); + } + c = ml1 + m1 / n; + rho0 = c - ProjectionMath.mlfn(projectionLatitude, Math.sin(projectionLatitude), + Math.cos(projectionLatitude), en); + } else { + if (secant) + n = (cosphi - Math.cos(phi2)) / (phi2 - phi1); + if (n == 0) + throw new ProjectionException("Invalid value for lat_1 and lat_2: lat_1 + lat_2 should be > 0"); + c = phi1 + Math.cos(phi1) / n; + rho0 = c - projectionLatitude; + } } - public ProjCoordinate project(ProjCoordinate in, ProjCoordinate out) { - double lon = ProjectionMath.normalizeLongitude(in.x-projectionLongitude); - double lat = in.y; - double rho,theta,hold1,hold2,hold3; - - hold2 = Math.pow(((1.0 - eccentricity * Math.sin(lat)) / (1.0 + eccentricity * Math.sin(lat))), 0.5 * eccentricity); - hold3 = Math.tan(ProjectionMath.QUARTERPI - 0.5 * lat); - hold1 = (hold3 == 0.0) ? 0.0 : Math.pow(hold3 / hold2, n); - rho = radius * f * hold1; - theta = n * lon; - - out.x = rho * Math.sin(theta); - out.y = rho0 - rho * Math.cos(theta); + public ProjCoordinate project(double lplam, double lpphi, ProjCoordinate out) { + double rho = c - (ellips + ? ProjectionMath.mlfn(lpphi, Math.sin(lpphi), Math.cos(lpphi), en) + : lpphi); + double lam_mul_n = lplam * n; + out.x = rho * Math.sin(lam_mul_n); + out.y = rho0 - rho * Math.cos(lam_mul_n); return out; } - public ProjCoordinate inverseProject(ProjCoordinate in, ProjCoordinate out) { - double theta, temp, rho, t, tphi, phi = 0, delta; - - theta = Math.atan(in.x / (rho0 - in.y)); - out.x = (theta / n) + projectionLongitude; - - temp = in.x * in.x + (rho0 - in.y) * (rho0 - in.y); - rho = Math.sqrt(temp); - if (n < 0) - rho = - rho; - t = Math.pow((rho / (radius * f)), 1./n); - tphi = ProjectionMath.HALFPI - 2.0 * Math.atan(t); - delta = 1.0; - for (int i = 0; i < 100 && delta > 1.0e-8; i++) { - temp = (1.0 - eccentricity * Math.sin(tphi)) / (1.0 + eccentricity * Math.sin(tphi)); - phi = ProjectionMath.HALFPI - 2.0 * Math.atan(t * Math.pow(temp, 0.5 * eccentricity)); - delta = Math.abs(Math.abs(tphi) - Math.abs(phi)); - tphi = phi; + public ProjCoordinate projectInverse(double xyx, double xyy, ProjCoordinate out) { + xyy = rho0 - xyy; + double rho = ProjectionMath.distance(xyx, xyy); + if (rho != 0.0) { + if (n < 0.) { + rho = -rho; + xyx = -xyx; + xyy = -xyy; + } + out.y = c - rho; + if (ellips) + out.y = ProjectionMath.inv_mlfn(out.y, es, en); + out.x = Math.atan2(xyx, xyy) / n; + } else { + out.x = 0.; + out.y = n > 0. ? ProjectionMath.HALFPI : -ProjectionMath.HALFPI; } - out.y = phi; return out; } - private void initialize(double rlong0, double rlat0, double standardLatitude1, double standardLatitude2) { - super.initialize(); - double t_standardLatitude1, m_standardLatitude1, t_standardLatitude2, m_standardLatitude2, t_rlat0; - - northPole = rlat0 > 0.0; - projectionLatitude = northPole ? ProjectionMath.HALFPI : -ProjectionMath.HALFPI; - - t_standardLatitude1 = Math.tan(ProjectionMath.QUARTERPI - 0.5 * standardLatitude1) / Math.pow((1.0 - eccentricity * - Math.sin(standardLatitude1)) /(1.0 + eccentricity * Math.sin(standardLatitude1)), 0.5 * eccentricity); - m_standardLatitude1 = Math.cos(standardLatitude1) / Math.sqrt(1.0 - eccentricity2 - * Math.pow(Math.sin(standardLatitude1), 2.0)); - t_standardLatitude2 = Math.tan(ProjectionMath.QUARTERPI - 0.5 * standardLatitude2) / Math.pow((1.0 - eccentricity * - Math.sin(standardLatitude2)) /(1.0 + eccentricity * Math.sin(standardLatitude2)), 0.5 * eccentricity); - m_standardLatitude2 = Math.cos(standardLatitude2) / Math.sqrt(1.0 - eccentricity2 - * Math.pow(Math.sin(standardLatitude2), 2.0)); - t_rlat0 = Math.tan(ProjectionMath.QUARTERPI - 0.5 * rlat0) / - Math.pow((1.0 - eccentricity * Math.sin(rlat0)) / - (1.0 + eccentricity * Math.sin(rlat0)), 0.5 * eccentricity); - - if (standardLatitude1 != standardLatitude2) - n = (Math.log(m_standardLatitude1) - Math.log(m_standardLatitude2))/(Math.log(t_standardLatitude1) - Math.log(t_standardLatitude2)); - else - n = Math.sin(standardLatitude1); - - f = m_standardLatitude1/(n * Math.pow(t_standardLatitude1, n)); - projectionLongitude = rlong0; - rho0 = radius * f * Math.pow(t_rlat0,n); - } - public boolean hasInverse() { return true; } @@ -127,4 +131,3 @@ public String toString() { } } - diff --git a/core/src/main/java/org/locationtech/proj4j/proj/HammerProjection.java b/core/src/main/java/org/locationtech/proj4j/proj/HammerProjection.java index 061fecc..79b2693 100644 --- a/core/src/main/java/org/locationtech/proj4j/proj/HammerProjection.java +++ b/core/src/main/java/org/locationtech/proj4j/proj/HammerProjection.java @@ -44,14 +44,11 @@ public ProjCoordinate project(double lplam, double lpphi, ProjCoordinate xy) { public void initialize() { super.initialize(); + // w and m default to .5 and 1; a supplied +W / +M must not be overwritten if ((w = Math.abs(w)) <= 0.) - throw new ProjectionException("-27"); - else - w = .5; + throw new ProjectionException("Invalid value for W: it should be > 0"); if ((m = Math.abs(m)) <= 0.) - throw new ProjectionException("-27"); - else - m = 1.; + throw new ProjectionException("Invalid value for M: it should be > 0"); rm = 1. / m; m /= w; es = 0.; diff --git a/core/src/main/java/org/locationtech/proj4j/proj/KrovakProjection.java b/core/src/main/java/org/locationtech/proj4j/proj/KrovakProjection.java index 802c20b..80dba85 100644 --- a/core/src/main/java/org/locationtech/proj4j/proj/KrovakProjection.java +++ b/core/src/main/java/org/locationtech/proj4j/proj/KrovakProjection.java @@ -40,11 +40,33 @@ public KrovakProjection() { maxLatitude = Math.toRadians(60); minLongitude = Math.toRadians(-90); maxLongitude = Math.toRadians(90); + /* + * PROJ defaults, applied unless the definition overrides them: + * lat_0 = 49d30'N, lon_0 = 42d30' E of Ferro - 17d40' (i.e. relative to + * Greenwich, not Ferro), k_0 = 0.9999. + */ + projectionLatitude = 0.863937979737193; + projectionLongitude = 0.7417649320975901 - 0.308341501185665; + scaleFactor = 0.9999; initialize(); } + public void setCzech(boolean czech) { + this.czech = czech; + } + + public boolean isCzech() { + return czech; + } + @Override public void initialize() { + /* Krovak is defined on Bessel 1841, whatever ellipsoid the definition carries, + so fix it before the base class derives one_es/spherical/totalScale from it. */ + a = 6377397.155; + es = 0.006674372230614; + e = sqrt(es); + super.initialize(); double s90, fi0, e2, uq, u0, g, k1, n0; @@ -53,15 +75,7 @@ public void initialize() { s90 = 2 * s45; fi0 = projectionLatitude; /* Latitude of projection centre 49deg 30' */ - /* Ellipsoid is used as Parameter in for.c and inv.c, therefore a must - be set to 1 here. - Ellipsoid Bessel 1841 a = 6377397.155m 1/f = 299.1528128, - e2=0.006674372230614; - */ - a = 1; /* 6377397.155; */ - /* e2 = P->es; */ /* 0.006674372230614; */ - e2 = 0.006674372230614; - e = sqrt(e2); + e2 = es; alfa = sqrt(1. + (e2 * pow(cos(fi0), 4)) / (1. - e2)); @@ -72,7 +86,7 @@ public void initialize() { k = tan( u0 / 2. + s45) / pow (tan(fi0 / 2. + s45) , alfa) * g; k1 = scaleFactor; - n0 = a * sqrt(1. - e2) / (1. - e2 * pow(sin(fi0), 2)); + n0 = sqrt(1. - e2) / (1. - e2 * pow(sin(fi0), 2)); s0 = 1.37008346281555; /* Latitude of pseudo standard parallel 78deg 30'00" N */ n = sin(s0); ro0 = k1 * n0 / tan(s0); @@ -97,8 +111,8 @@ public ProjCoordinate project(double lplam, double lpphi, ProjCoordinate out) { ro = ro0 * pow(tan(s0 / 2. + s45) , n) / pow(tan(s / 2. + s45) , n) ; /* x and y are reverted! */ - out.y = ro * cos(eps) / a; - out.x = ro * sin(eps) / a; + out.y = ro * cos(eps); + out.x = ro * sin(eps); if(!czech) { out.y *= -1.0; diff --git a/core/src/main/java/org/locationtech/proj4j/proj/LagrangeProjection.java b/core/src/main/java/org/locationtech/proj4j/proj/LagrangeProjection.java index f067871..3c96302 100644 --- a/core/src/main/java/org/locationtech/proj4j/proj/LagrangeProjection.java +++ b/core/src/main/java/org/locationtech/proj4j/proj/LagrangeProjection.java @@ -29,7 +29,8 @@ public class LagrangeProjection extends Projection { // Parameters private double hrw; - private double rw = 1.4; + private double w = 2; + private double rw; private double a1; private double phi1; @@ -53,21 +54,22 @@ public ProjCoordinate project(double lplam, double lpphi, ProjCoordinate xy) { } public void setW( double w ) { - this.rw = w; + this.w = w; } public double getW() { - return rw; + return w; } public void initialize() { super.initialize(); - if (rw <= 0) - throw new ProjectionException("-27"); - hrw = 0.5 * (rw = 1. / rw); + if (w <= 0) + throw new ProjectionException("Invalid value for W: it should be > 0"); + rw = 1. / w; + hrw = 0.5 * rw; phi1 = projectionLatitude1; if (Math.abs(Math.abs(phi1 = Math.sin(phi1)) - 1.) < TOL) - throw new ProjectionException("-22"); + throw new ProjectionException("Invalid value for lat_1: |lat_1| should be < 90"); a1 = Math.pow((1. - phi1)/(1. + phi1), hrw); } diff --git a/core/src/main/java/org/locationtech/proj4j/proj/LambertEqualAreaConicProjection.java b/core/src/main/java/org/locationtech/proj4j/proj/LambertEqualAreaConicProjection.java index 6c50cb4..432fb65 100644 --- a/core/src/main/java/org/locationtech/proj4j/proj/LambertEqualAreaConicProjection.java +++ b/core/src/main/java/org/locationtech/proj4j/proj/LambertEqualAreaConicProjection.java @@ -23,6 +23,8 @@ public class LambertEqualAreaConicProjection extends AlbersProjection { + private boolean south; + public LambertEqualAreaConicProjection() { this( false ); } @@ -30,11 +32,27 @@ public LambertEqualAreaConicProjection() { public LambertEqualAreaConicProjection( boolean south ) { minLatitude = Math.toRadians(0); maxLatitude = Math.toRadians(90); + this.south = south; projectionLatitude1 = south ? -ProjectionMath.QUARTERPI : ProjectionMath.QUARTERPI; projectionLatitude2 = south ? -ProjectionMath.HALFPI : ProjectionMath.HALFPI; initialize(); } + /** + * {@code +south}: PROJ takes the second parallel at the south pole rather than the north one + * ({@code phi1 = south ? -90 : 90}, with {@code +lat_1} as the other parallel). + */ + @Override + public void setSouthernHemisphere(boolean south) { + this.south = south; + projectionLatitude2 = south ? -ProjectionMath.HALFPI : ProjectionMath.HALFPI; + } + + @Override + public boolean getSouthernHemisphere() { + return south; + } + public String toString() { return "Lambert Equal Area Conic"; } diff --git a/core/src/main/java/org/locationtech/proj4j/proj/LandsatProjection.java b/core/src/main/java/org/locationtech/proj4j/proj/LandsatProjection.java index 9446d8d..16b9c95 100644 --- a/core/src/main/java/org/locationtech/proj4j/proj/LandsatProjection.java +++ b/core/src/main/java/org/locationtech/proj4j/proj/LandsatProjection.java @@ -27,6 +27,26 @@ public class LandsatProjection extends Projection { private double a2, a4, b, c1, c3; private double q, t, u, w, p22, sa, ca, xj, rlm, rlm2; + /** +lsat: Landsat satellite number, 1..5 */ + private int landsat = 0; + /** +path: Landsat path number, 1..251 (satellites 1-3) or 1..233 (4-5) */ + private int path = 0; + + public void setLandsat(int landsat) { + this.landsat = landsat; + } + + public int getLandsat() { + return landsat; + } + + public void setPath(int path) { + this.path = path; + } + + public int getPath() { + return path; + } private final static double TOL = 1e-7; private final static double PI_HALFPI = 4.71238898038468985766; @@ -151,17 +171,14 @@ private void seraz0(double lam, double mult) { public void initialize() { super.initialize(); - int land, path; + int land = landsat; double lam, alf, esc, ess; -//FIXME land = pj_param(params, "ilsat").i; -land = 1; if (land <= 0 || land > 5) - throw new ProjectionException("-28"); -//FIXME path = pj_param(params, "ipath").i; -path = 120; - if (path <= 0 || path > (land <= 3 ? 251 : 233)) - throw new ProjectionException("-29"); + throw new ProjectionException("Invalid value for lsat: lsat should be in [1, 5] range"); + int maxPathVal = land <= 3 ? 251 : 233; + if (path <= 0 || path > maxPathVal) + throw new ProjectionException("Invalid value for path: path should be in [1, " + maxPathVal + "] range"); if (land <= 3) { projectionLongitude = DTR * 128.87 - ProjectionMath.TWOPI / 251. * path; p22 = 103.2669323; diff --git a/core/src/main/java/org/locationtech/proj4j/proj/LoximuthalProjection.java b/core/src/main/java/org/locationtech/proj4j/proj/LoximuthalProjection.java index 0e75851..b14eb5d 100644 --- a/core/src/main/java/org/locationtech/proj4j/proj/LoximuthalProjection.java +++ b/core/src/main/java/org/locationtech/proj4j/proj/LoximuthalProjection.java @@ -41,7 +41,7 @@ public LoximuthalProjection() { public ProjCoordinate project(double lplam, double lpphi, ProjCoordinate out) { double x; double y = lpphi - phi1; - if (y < EPS) + if (Math.abs(y) < EPS) x = lplam * cosphi1; else { x = ProjectionMath.QUARTERPI + 0.5 * lpphi; diff --git a/core/src/main/java/org/locationtech/proj4j/proj/McBrydeThomasFlatPolarParabolicProjection.java b/core/src/main/java/org/locationtech/proj4j/proj/McBrydeThomasFlatPolarParabolicProjection.java index 6bc50be..23dd93a 100644 --- a/core/src/main/java/org/locationtech/proj4j/proj/McBrydeThomasFlatPolarParabolicProjection.java +++ b/core/src/main/java/org/locationtech/proj4j/proj/McBrydeThomasFlatPolarParabolicProjection.java @@ -33,9 +33,9 @@ public class McBrydeThomasFlatPolarParabolicProjection extends Projection { private final static double ONEEPS = 1.0000001; public ProjCoordinate project(double lplam, double lpphi, ProjCoordinate out) { - out.y = Math.asin(CS * Math.sin(lpphi)); - out.x = FXC * lplam * (2. * Math.cos(C23 * lpphi) - 1.); - out.y = FYC * Math.sin(C13 * lpphi); + double phi = ProjectionMath.asin(CS * Math.sin(lpphi)); + out.x = FXC * lplam * (2. * Math.cos(C23 * phi) - 1.); + out.y = FYC * Math.sin(C13 * phi); return out; } diff --git a/core/src/main/java/org/locationtech/proj4j/proj/McBrydeThomasFlatPolarQuarticProjection.java b/core/src/main/java/org/locationtech/proj4j/proj/McBrydeThomasFlatPolarQuarticProjection.java index bd4a5b2..9472d5e 100644 --- a/core/src/main/java/org/locationtech/proj4j/proj/McBrydeThomasFlatPolarQuarticProjection.java +++ b/core/src/main/java/org/locationtech/proj4j/proj/McBrydeThomasFlatPolarQuarticProjection.java @@ -40,13 +40,14 @@ public ProjCoordinate project(double lplam, double lpphi, ProjCoordinate out) { int i; c = C * Math.sin(lpphi); + double phi = lpphi; for (i = NITER; i > 0; --i) { - out.y -= th1 = (Math.sin(.5*lpphi) + Math.sin(lpphi) - c) / - (.5*Math.cos(.5*lpphi) + Math.cos(lpphi)); + phi -= th1 = (Math.sin(.5*phi) + Math.sin(phi) - c) / + (.5*Math.cos(.5*phi) + Math.cos(phi)); if (Math.abs(th1) < EPS) break; } - out.x = FXC * lplam * (1.0 + 2. * Math.cos(lpphi)/Math.cos(0.5 * lpphi)); - out.y = FYC * Math.sin(0.5 * lpphi); + out.x = FXC * lplam * (1.0 + 2. * Math.cos(phi)/Math.cos(0.5 * phi)); + out.y = FYC * Math.sin(0.5 * phi); return out; } diff --git a/core/src/main/java/org/locationtech/proj4j/proj/McBrydeThomasFlatPolarSine2Projection.java b/core/src/main/java/org/locationtech/proj4j/proj/McBrydeThomasFlatPolarSine2Projection.java index 59f1aae..99c2d35 100644 --- a/core/src/main/java/org/locationtech/proj4j/proj/McBrydeThomasFlatPolarSine2Projection.java +++ b/core/src/main/java/org/locationtech/proj4j/proj/McBrydeThomasFlatPolarSine2Projection.java @@ -38,15 +38,16 @@ public ProjCoordinate project(double lplam, double lpphi, ProjCoordinate out) { int i; k = C3 * Math.sin(lpphi); + double phi = lpphi; for (i = MAX_ITER; i > 0; i--) { - t = lpphi / C2; - out.y -= V = (C1 * Math.sin(t) + Math.sin(lpphi) - k) / - (C1_2 * Math.cos(t) + Math.cos(lpphi)); + t = phi / C2; + phi -= V = (C1 * Math.sin(t) + Math.sin(phi) - k) / + (C1_2 * Math.cos(t) + Math.cos(phi)); if (Math.abs(V) < LOOP_TOL) break; } - t = lpphi / C2; - out.x = C_x * lplam * (1. + 3. * Math.cos(lpphi)/Math.cos(t) ); + t = phi / C2; + out.x = C_x * lplam * (1. + 3. * Math.cos(phi)/Math.cos(t) ); out.y = C_y * Math.sin(t); return out; } diff --git a/core/src/main/java/org/locationtech/proj4j/proj/MercatorProjection.java b/core/src/main/java/org/locationtech/proj4j/proj/MercatorProjection.java index bb61df5..565f67e 100644 --- a/core/src/main/java/org/locationtech/proj4j/proj/MercatorProjection.java +++ b/core/src/main/java/org/locationtech/proj4j/proj/MercatorProjection.java @@ -20,6 +20,7 @@ package org.locationtech.proj4j.proj; import org.locationtech.proj4j.ProjCoordinate; +import org.locationtech.proj4j.ProjectionException; import org.locationtech.proj4j.util.ProjectionMath; public class MercatorProjection extends CylindricalProjection { @@ -27,8 +28,23 @@ public class MercatorProjection extends CylindricalProjection { public MercatorProjection() { minLatitude = ProjectionMath.degToRad(-85); maxLatitude = ProjectionMath.degToRad(85); + // NaN marks "+lat_ts not given"; lat_ts and k_0 are alternative ways to set the scale + trueScaleLatitude = Double.NaN; } - + + public void initialize() { + super.initialize(); + if (!Double.isNaN(trueScaleLatitude)) { + double phits = Math.abs(trueScaleLatitude); + if (phits >= ProjectionMath.HALFPI) + throw new ProjectionException("Invalid value for lat_ts: |lat_ts| should be <= 90"); + // as in PROJ: lat_ts defines the scale factor, and takes precedence over +k_0 + scaleFactor = spherical + ? Math.cos(phits) + : ProjectionMath.msfn(Math.sin(phits), Math.cos(phits), es); + } + } + public ProjCoordinate project(double lam, double phi, ProjCoordinate out) { if (spherical) { out.x = scaleFactor * lam; diff --git a/core/src/main/java/org/locationtech/proj4j/proj/NellProjection.java b/core/src/main/java/org/locationtech/proj4j/proj/NellProjection.java index 3869f21..1453159 100644 --- a/core/src/main/java/org/locationtech/proj4j/proj/NellProjection.java +++ b/core/src/main/java/org/locationtech/proj4j/proj/NellProjection.java @@ -33,15 +33,15 @@ public ProjCoordinate project(double lplam, double lpphi, ProjCoordinate out) { k = 2. * Math.sin(lpphi); V = lpphi * lpphi; - out.y *= 1.00371 + V * (-0.0935382 + V * -0.011412); + double phi = lpphi * (1.00371 + V * (-0.0935382 + V * -0.011412)); for (i = MAX_ITER; i > 0 ; --i) { - out.y -= V = (lpphi + Math.sin(lpphi) - k) / - (1. + Math.cos(lpphi)); + phi -= V = (phi + Math.sin(phi) - k) / + (1. + Math.cos(phi)); if (Math.abs(V) < LOOP_TOL) break; } - out.x = 0.5 * lplam * (1. + Math.cos(lpphi)); - out.y = lpphi; + out.x = 0.5 * lplam * (1. + Math.cos(phi)); + out.y = phi; return out; } diff --git a/core/src/main/java/org/locationtech/proj4j/proj/ObliqueMercatorProjection.java b/core/src/main/java/org/locationtech/proj4j/proj/ObliqueMercatorProjection.java index 46f7319..d04d0d0 100644 --- a/core/src/main/java/org/locationtech/proj4j/proj/ObliqueMercatorProjection.java +++ b/core/src/main/java/org/locationtech/proj4j/proj/ObliqueMercatorProjection.java @@ -35,6 +35,12 @@ public class ObliqueMercatorProjection extends CylindricalProjection { private double lamc, lam1, phi1, lam2, phi2, Gamma, al, bl, el, singam, cosgam, sinrot, cosrot, u_0; private boolean ellips, rot, no_uoff; + /** + * The raw {@code +alpha} and {@code +gamma}, NaN when not given. They decide which of PROJ's + * three setups runs, so they must survive {@link #initialize()} - which can be called more + * than once - untouched by the derived azimuth and rectified bearing. + */ + private double alphaParam = Double.NaN, gammaParam = Double.NaN; public ObliqueMercatorProjection() { ellipsoid = Ellipsoid.WGS84; @@ -44,8 +50,6 @@ public ObliqueMercatorProjection() { maxLongitude = Math.toRadians(60); minLatitude = Math.toRadians(-80); maxLatitude = Math.toRadians(80); - alpha = Math.toRadians(-45);//FIXME - initialize(); } /** @@ -53,38 +57,62 @@ public ObliqueMercatorProjection() { */ public ObliqueMercatorProjection(Ellipsoid ellipsoid, double lon_0, double lat_0, double alpha, double k, double x_0, double y_0) { setEllipsoid(ellipsoid); - lamc = lon_0; + lonc = lon_0; projectionLatitude = lat_0; - this.alpha = alpha; + setAlpha(alpha); scaleFactor = k; falseEasting = x_0; falseNorthing = y_0; initialize(); } + @Override public void setAlpha(double alpha) { + super.setAlpha(alpha); + alphaParam = this.alpha; + } + + @Override public void setAlphaDegrees(double alpha) { + super.setAlphaDegrees(alpha); + alphaParam = this.alpha; + } + public void initialize() { super.initialize(); double con, com, cosphi0, d, f, h, l, sinphi0, p, j, gamma0; - //FIXME-setup rot, alpha, longc,lon/lat1/2 rot = true; - lamc = lonc; + lamc = lonc; + + // which setup applies is decided by the raw parameters, exactly as in PROJ + boolean azi = !Double.isNaN(alphaParam); // +alpha given + boolean gzi = !Double.isNaN(gammaParam); // +gamma given + double alpha_c = azi ? alphaParam : 0.; + double gamma = gzi ? gammaParam : 0.; - // true if alpha provided - int azi = Double.isNaN(alpha) ? 0 : 1; - // true if gamma provided - int gzi = Double.isNaN(Gamma) ? 0 : 1; - if (azi != 0) { // alpha specified - if (Math.abs(alpha) <= TOL || - Math.abs(Math.abs(projectionLatitude) - ProjectionMath.HALFPI) <= TOL || - Math.abs(Math.abs(alpha) - ProjectionMath.HALFPI) <= TOL) - throw new ProjectionException("Obl 1"); + if (azi || gzi) { + if (Math.abs(Math.abs(projectionLatitude) - ProjectionMath.HALFPI) <= TOL) + throw new ProjectionException("Invalid value for lat_0: |lat_0| should be < 90"); + if (azi && (Math.abs(alpha_c) <= TOL || + Math.abs(Math.abs(alpha_c) - ProjectionMath.HALFPI) <= TOL)) + throw new ProjectionException( + "Invalid value for alpha: it should be different from 0 and |alpha| < 90"); } else { - if (Math.abs(phi1 - phi2) <= TOL || - (con = Math.abs(phi1)) <= TOL || - Math.abs(con - ProjectionMath.HALFPI) <= TOL || - Math.abs(Math.abs(projectionLatitude) - ProjectionMath.HALFPI) <= TOL || - Math.abs(Math.abs(phi2) - ProjectionMath.HALFPI) <= TOL) throw new ProjectionException("Obl 2"); + // two-point form: +lat_1/+lon_1/+lat_2/+lon_2 + phi1 = projectionLatitude1; + phi2 = projectionLatitude2; + lam1 = projectionLongitude1; + lam2 = projectionLongitude2; + if (Math.abs(phi1) > ProjectionMath.HALFPI - TOL) + throw new ProjectionException("Invalid value for lat_1: |lat_1| should be < 90"); + if (Math.abs(phi2) > ProjectionMath.HALFPI - TOL) + throw new ProjectionException("Invalid value for lat_2: |lat_2| should be < 90"); + if (Math.abs(phi1 - phi2) <= TOL) + throw new ProjectionException( + "Invalid value for lat_1/lat_2: lat_1 should be different from lat_2"); + if (Math.abs(phi1) <= TOL) + throw new ProjectionException("Invalid value for lat_1: lat_1 should be different from 0"); + if (Math.abs(Math.abs(projectionLatitude) - ProjectionMath.HALFPI) <= TOL) + throw new ProjectionException("Invalid value for lat_0: |lat_0| should be < 90"); } com = (spherical = es == 0.) ? 1 : Math.sqrt(one_es); if (Math.abs(projectionLatitude) > EPS10) { @@ -118,15 +146,17 @@ public void initialize() { al = scaleFactor; el = d = f = 1.; } - if (azi != 0 || gzi != 0) { - if (azi != 0) { - gamma0 = Math.asin(Math.sin(alpha) / d); - if(gzi == 0) { - Gamma = alpha; - } - }else { - gamma0 = Gamma; - alpha = Math.asin(d * Math.sin(gamma0)); + if (azi || gzi) { + if (azi) { + gamma0 = Math.asin(Math.sin(alpha_c) / d); + if (!gzi) + gamma = alpha_c; + } else { + gamma0 = gamma; + alpha_c = Math.asin(d * Math.sin(gamma0)); + if (Double.isNaN(alpha_c)) + throw new ProjectionException("Invalid value for gamma: given lat_0, |gamma| should be <= " + + Math.toDegrees(Math.asin(1. / d))); } projectionLongitude = lamc - Math.asin((.5 * (f - 1. / f)) * Math.tan(gamma0)) / bl; @@ -150,26 +180,50 @@ else if (con > Math.PI) j * Math.tan(.5 * bl * (lam1 - lam2)) / p) / bl); gamma0 = Math.atan(2. * Math.sin(bl * ProjectionMath.normalizeLongitude(lam1 - projectionLongitude)) / (f - 1. / f)); - Gamma = Math.asin(d * Math.sin(gamma0)); - alpha = Gamma; + gamma = alpha_c = Math.asin(d * Math.sin(gamma0)); } singam = Math.sin(gamma0); cosgam = Math.cos(gamma0); - sinrot = Math.sin(Gamma); - cosrot = Math.cos(Gamma); - + sinrot = Math.sin(gamma); + cosrot = Math.cos(gamma); + // The natural-origin offset uses the azimuth of the central line (alpha), following Snyder's // Hotine Oblique Mercator: u_c = (A / B) * atan(sqrt(D^2 - 1) / cos(alpha_c)). Using the - // rectified bearing (Gamma) here misplaces the projection centre whenever Gamma != alpha, + // rectified bearing (gamma) here misplaces the projection centre whenever gamma != alpha, // e.g. for definitions with an explicit "+gamma=0" and a non-zero azimuth. - u_0 = no_uoff ? 0. : - Math.abs(al * Math.atan(Math.sqrt(d * d - 1.) / Math.cos(alpha)) / bl); - if (projectionLatitude < 0.) - u_0 = - u_0; + if (no_uoff) + u_0 = 0.; + else { + u_0 = Math.abs(al * Math.atan(Math.sqrt(d * d - 1.) / Math.cos(alpha_c)) / bl); + if (projectionLatitude < 0.) + u_0 = - u_0; + } + + // publish the derived azimuth and rectified bearing, as PROJ keeps alpha_c/gamma in its state + this.alpha = alpha_c; + this.Gamma = gamma; } @Override public void setGamma(double gamma) { - this.Gamma = gamma; + this.gammaParam = gamma; + } + + /** {@code +lon_1}, the longitude of the first point of the two-point form. */ + public void setProjectionLongitude1(double lon1) { + this.projectionLongitude1 = lon1; + } + + public void setProjectionLongitude1Degrees(double lon1) { + this.projectionLongitude1 = DTR * lon1; + } + + /** {@code +lon_2}, the longitude of the second point of the two-point form. */ + public void setProjectionLongitude2(double lon2) { + this.projectionLongitude2 = lon2; + } + + public void setProjectionLongitude2Degrees(double lon2) { + this.projectionLongitude2 = DTR * lon2; } @Override public void setNoUoff(boolean no_uoff) { @@ -190,11 +244,11 @@ public ProjCoordinate project(double lam, double phi, ProjCoordinate xy) { ul = 2. * (s * singam - vl * cosgam) / (q + 1. / q); con = Math.cos(bl * lam); if (Math.abs(con) >= TOL) { - us = al * Math.atan((s * cosgam + vl * singam) / con) / bl; - if (con < 0.) - us += Math.PI * al / bl; + // atan2 picks the right quadrant on its own; the historical + // atan(y/con) + PI correction is only right for y > 0 + us = al * Math.atan2(s * cosgam + vl * singam, con) / bl; } else - us = al * bl * lam; + us = al * lam; } if (Math.abs(Math.abs(ul) - 1.) <= EPS10) throw new ProjectionException("Obl 3"); vs = .5 * al * Math.log((1. - ul) / (1. + ul)) / bl; diff --git a/core/src/main/java/org/locationtech/proj4j/proj/PerspectiveProjection.java b/core/src/main/java/org/locationtech/proj4j/proj/PerspectiveProjection.java index 1724b2f..301c7a1 100644 --- a/core/src/main/java/org/locationtech/proj4j/proj/PerspectiveProjection.java +++ b/core/src/main/java/org/locationtech/proj4j/proj/PerspectiveProjection.java @@ -20,6 +20,8 @@ package org.locationtech.proj4j.proj; import org.locationtech.proj4j.ProjCoordinate; +import org.locationtech.proj4j.ProjectionException; +import org.locationtech.proj4j.util.ProjectionMath; public class PerspectiveProjection extends Projection { @@ -64,8 +66,8 @@ public ProjCoordinate project(double lplam, double lpphi, ProjCoordinate xy) { xy.y = sinphi; break; } -// if (xy.y < rp) -// throw new ProjectionException(""); + if (xy.y < rp) + throw new ProjectionException("Point is on the far side of the globe"); xy.y = pn1 / (p - xy.y); xy.x = xy.y * cosphi * Math.sin(lplam); switch (mode) { @@ -143,24 +145,29 @@ public boolean hasInverse() { } */ + public void setHeightOfOrbit(double h) { + this.height = h; + } + + public double getHeightOfOrbit() { + return height; + } + public void initialize() { super.initialize(); -mode = EQUIT; -height = a; -tilt = 0; -// if ((height = pj_param(params, "dh").f) <= 0.) E_ERROR(-30); -/* - if (fabs(fabs(phi0) - Math.HALFPI) < EPS10) - mode = phi0 < 0. ? S_POLE : N_POLE; - else if (fabs(phi0) < EPS10) + tilt = 0; + if (Math.abs(Math.abs(projectionLatitude) - ProjectionMath.HALFPI) < EPS10) + mode = projectionLatitude < 0. ? S_POLE : N_POLE; + else if (Math.abs(projectionLatitude) < EPS10) mode = EQUIT; else { mode = OBLIQ; - psinph0 = Math.sin(phi0); - pcosph0 = Math.cos(phi0); + psinph0 = Math.sin(projectionLatitude); + pcosph0 = Math.cos(projectionLatitude); } -*/ pn1 = height / a; /* normalize by radius */ + if (pn1 <= 0 || pn1 > 1e10) + throw new ProjectionException("Invalid value for h"); p = 1. + pn1; rp = 1. / p; h = 1. / pn1; diff --git a/core/src/main/java/org/locationtech/proj4j/proj/PlateCarreeProjection.java b/core/src/main/java/org/locationtech/proj4j/proj/PlateCarreeProjection.java index cccb1c9..70dd093 100644 --- a/core/src/main/java/org/locationtech/proj4j/proj/PlateCarreeProjection.java +++ b/core/src/main/java/org/locationtech/proj4j/proj/PlateCarreeProjection.java @@ -16,9 +16,57 @@ package org.locationtech.proj4j.proj; +import org.locationtech.proj4j.ProjCoordinate; +import org.locationtech.proj4j.ProjectionException; +import org.locationtech.proj4j.util.ProjectionMath; public class PlateCarreeProjection extends CylindricalProjection { - + + /** Spherical: cos(lat_ts); ellipsoidal: nu1 * cos(lat_ts) */ + private double rc; + /** Meridional arc at lat_0 (ellipsoidal only) */ + private double M0; + private double[] en; + + public void initialize() { + super.initialize(); + double cosphits = Math.cos(trueScaleLatitude); + if (cosphits <= 0.) + throw new ProjectionException("Invalid value for lat_ts: |lat_ts| should be <= 90"); + if (!spherical) { + // Ellipsoidal case (EPSG:1028) + double sinphits = Math.sin(trueScaleLatitude); + double nu1 = 1.0 / Math.sqrt(1.0 - es * sinphits * sinphits); + rc = nu1 * cosphits; + en = ProjectionMath.enfn(es); + M0 = ProjectionMath.mlfn(projectionLatitude, Math.sin(projectionLatitude), + Math.cos(projectionLatitude), en); + } else { + // Spherical case (EPSG:1029) + rc = cosphits; + en = null; + M0 = 0.0; + } + } + + public ProjCoordinate project(double lplam, double lpphi, ProjCoordinate out) { + out.x = rc * lplam; + if (spherical) + out.y = lpphi - projectionLatitude; + else + out.y = ProjectionMath.mlfn(lpphi, Math.sin(lpphi), Math.cos(lpphi), en) - M0; + return out; + } + + public ProjCoordinate projectInverse(double xyx, double xyy, ProjCoordinate out) { + out.x = xyx / rc; + if (spherical) + out.y = xyy + projectionLatitude; + else + out.y = ProjectionMath.inv_mlfn(xyy + M0, es, en); + return out; + } + public boolean hasInverse() { return true; } diff --git a/core/src/main/java/org/locationtech/proj4j/proj/PolyconicProjection.java b/core/src/main/java/org/locationtech/proj4j/proj/PolyconicProjection.java index a47c8e2..2db05f9 100644 --- a/core/src/main/java/org/locationtech/proj4j/proj/PolyconicProjection.java +++ b/core/src/main/java/org/locationtech/proj4j/proj/PolyconicProjection.java @@ -63,7 +63,8 @@ public ProjCoordinate project(double lplam, double lpphi, ProjCoordinate out) { } else { sp = Math.sin(lpphi); ms = Math.abs(cp = Math.cos(lpphi)) > TOL ? ProjectionMath.msfn(sp, cp, es) / sp : 0.; - out.x = ms * Math.sin(out.x *= sp); + lplam *= sp; + out.x = ms * Math.sin(lplam); out.y = (ProjectionMath.mlfn(lpphi, sp, cp, en) - ml0) + ms * (1. - Math.cos(lplam)); } } @@ -108,7 +109,7 @@ public ProjCoordinate projectInverse(double xyx, double xyy, ProjCoordinate out) c = sp * (mlp = Math.sqrt(1. - es * sp * sp)) / cp; ml = ProjectionMath.mlfn(lpphi, sp, cp, en); mlb = ml * ml + r; - mlp = (1.0 / es) / (mlp * mlp * mlp); + mlp = one_es / (mlp * mlp * mlp); lpphi += ( dPhi = ( ml + ml + c * mlb - 2. * xyy * (c * ml + 1.) ) / ( es * s2ph * (mlb - 2. * xyy * ml) / c + @@ -132,7 +133,6 @@ public boolean hasInverse() { public void initialize() { super.initialize(); -spherical = true;//FIXME if (!spherical) { en = ProjectionMath.enfn(es); if (en == null) diff --git a/core/src/main/java/org/locationtech/proj4j/proj/Projection.java b/core/src/main/java/org/locationtech/proj4j/proj/Projection.java index a3def21..501d445 100644 --- a/core/src/main/java/org/locationtech/proj4j/proj/Projection.java +++ b/core/src/main/java/org/locationtech/proj4j/proj/Projection.java @@ -80,6 +80,13 @@ public abstract class Projection implements Cloneable, java.io.Serializable { */ protected double projectionLatitude2 = 0.0; + /** + * The longitudes of the two points of a two-point projection setup (+lon_1, +lon_2) + */ + protected double projectionLongitude1 = 0.0; + + protected double projectionLongitude2 = 0.0; + /** * The projection alpha value */ @@ -763,6 +770,9 @@ public Ellipsoid getEllipsoid() { public void setRadius(double radius) { a = radius; + // +R defines a sphere: any eccentricity carried over from an ellipsoid no longer applies + e = 0; + es = 0; } /** diff --git a/core/src/main/java/org/locationtech/proj4j/proj/PutninsP2Projection.java b/core/src/main/java/org/locationtech/proj4j/proj/PutninsP2Projection.java index db99b72..76cc388 100644 --- a/core/src/main/java/org/locationtech/proj4j/proj/PutninsP2Projection.java +++ b/core/src/main/java/org/locationtech/proj4j/proj/PutninsP2Projection.java @@ -32,24 +32,24 @@ public class PutninsP2Projection extends Projection { private final static double PI_DIV_3 = 1.0471975511965977; public ProjCoordinate project(double lplam, double lpphi, ProjCoordinate out) { - double p, c, s, V; + double p, c, s, V, phi; int i; p = C_p * Math.sin(lpphi); s = lpphi * lpphi; - out.y *= 0.615709 + s * ( 0.00909953 + s * 0.0046292 ); + phi = lpphi * (0.615709 + s * ( 0.00909953 + s * 0.0046292 )); for (i = NITER; i > 0; --i) { - c = Math.cos(lpphi); - s = Math.sin(lpphi); - out.y -= V = (lpphi + s * (c - 1.) - p) / + c = Math.cos(phi); + s = Math.sin(phi); + phi -= V = (phi + s * (c - 1.) - p) / (1. + c * (c - 1.) - s * s); if (Math.abs(V) < EPS) break; } if (i == 0) - out.y = lpphi < 0 ? - PI_DIV_3 : PI_DIV_3; - out.x = C_x * lplam * (Math.cos(lpphi) - 0.5); - out.y = C_y * Math.sin(lpphi); + phi = phi < 0 ? - PI_DIV_3 : PI_DIV_3; + out.x = C_x * lplam * (Math.cos(phi) - 0.5); + out.y = C_y * Math.sin(phi); return out; } diff --git a/core/src/main/java/org/locationtech/proj4j/proj/RectangularPolyconicProjection.java b/core/src/main/java/org/locationtech/proj4j/proj/RectangularPolyconicProjection.java index 962ce22..68e3bab 100644 --- a/core/src/main/java/org/locationtech/proj4j/proj/RectangularPolyconicProjection.java +++ b/core/src/main/java/org/locationtech/proj4j/proj/RectangularPolyconicProjection.java @@ -51,12 +51,13 @@ public ProjCoordinate project(double lplam, double lpphi, ProjCoordinate out) { public void initialize() { // rpoly super.initialize(); -/*FIXME - if ((mode = (phi1 = Math.abs(pj_param(params, "rlat_ts").f)) > EPS)) { + phi0 = projectionLatitude; + phi1 = Math.abs(trueScaleLatitude); + mode = phi1 > EPS; + if (mode) { fxb = 0.5 * Math.sin(phi1); fxa = 0.5 / fxb; } -*/ } public String toString() { diff --git a/core/src/main/java/org/locationtech/proj4j/proj/RobinsonProjection.java b/core/src/main/java/org/locationtech/proj4j/proj/RobinsonProjection.java index b17968b..7d1c7f4 100644 --- a/core/src/main/java/org/locationtech/proj4j/proj/RobinsonProjection.java +++ b/core/src/main/java/org/locationtech/proj4j/proj/RobinsonProjection.java @@ -90,7 +90,9 @@ private double DV(double[] C, double z) { public ProjCoordinate project(double lplam, double lpphi, ProjCoordinate xy) { double phi = Math.abs(lpphi); - int i = (int)Math.floor(phi * C1); + // the 1e-15 guard makes latitudes that land exactly on a table node (multiples of 5 + // degrees) select that node, instead of the one below it through floor() rounding + int i = (int)Math.floor(phi * C1 + 1e-15); if (i >= NODES) i = NODES; phi = Math.toDegrees(phi - RC1 * i); diff --git a/core/src/main/java/org/locationtech/proj4j/proj/SimpleConicProjection.java b/core/src/main/java/org/locationtech/proj4j/proj/SimpleConicProjection.java index dafa4bc..766b9ba 100644 --- a/core/src/main/java/org/locationtech/proj4j/proj/SimpleConicProjection.java +++ b/core/src/main/java/org/locationtech/proj4j/proj/SimpleConicProjection.java @@ -79,11 +79,12 @@ public ProjCoordinate project(double lplam, double lpphi, ProjCoordinate out) { public ProjCoordinate projectInverse(double xyx, double xyy, ProjCoordinate out) { double rho; - rho = ProjectionMath.distance(xyx, out.y = rho_0 - xyy); + xyy = rho_0 - xyy; + rho = ProjectionMath.distance(xyx, xyy); if (n < 0.) { rho = - rho; - out.x = - xyx; - out.y = - xyy; + xyx = - xyx; + xyy = - xyy; } out.x = Math.atan2(xyx, xyy) / n; switch (type) { @@ -105,34 +106,16 @@ public boolean hasInverse() { public void initialize() { super.initialize(); - double del, cs, dummy; - - /* get common factors for simple conics */ - double p1, p2, d, s; - int err = 0; - -/*FIXME - if (!pj_param(params, "tlat_1").i || - !pj_param(params, "tlat_2").i) { - err = -41; - } else { - p1 = pj_param(params, "rlat_1").f; - p2 = pj_param(params, "rlat_2").f; - *del = 0.5 * (p2 - p1); - sig = 0.5 * (p2 + p1); - err = (Math.abs(*del) < EPS || Math.abs(sig) < EPS) ? -42 : 0; - *del = *del; - } -*/ - p1 = Math.toRadians(30);//FIXME - p2 = Math.toRadians(60);//FIXME + double del, cs; + + /* get common factors for simple conics: PROJ phi12() */ + double p1 = projectionLatitude1; + double p2 = projectionLatitude2; del = 0.5 * (p2 - p1); sig = 0.5 * (p2 + p1); - err = (Math.abs(del) < EPS || Math.abs(sig) < EPS) ? -42 : 0; - del = del; - - if (err != 0) - throw new ProjectionException("Error "+err); + if (Math.abs(del) < EPS || Math.abs(sig) < EPS) + throw new ProjectionException( + "Illegal value for lat_1 and lat_2: |lat_1 - lat_2| and |lat_1 + lat_2| should be > 0"); switch (type) { case TISSOT: diff --git a/core/src/main/java/org/locationtech/proj4j/proj/TransverseMercatorProjection.java b/core/src/main/java/org/locationtech/proj4j/proj/TransverseMercatorProjection.java index eccce4d..e2953a5 100644 --- a/core/src/main/java/org/locationtech/proj4j/proj/TransverseMercatorProjection.java +++ b/core/src/main/java/org/locationtech/proj4j/proj/TransverseMercatorProjection.java @@ -45,6 +45,10 @@ public class TransverseMercatorProjection extends CylindricalProjection { private double esp; private double ml0; private double[] en; + /** +approx: keep the truncated series instead of the exact Poder/Engsager algorithm */ + private boolean approx = false; + /** the exact algorithm, used for ellipsoids unless +approx was given (as in PROJ) */ + private ExtendedTransverseMercatorProjection exact; public TransverseMercatorProjection() { ellipsoid = Ellipsoid.GRS80; @@ -89,8 +93,34 @@ public boolean isRectilinear() { return false; } + /** + * {@code +approx}: use the Evenden/Snyder truncated series instead of the exact + * Poder/Engsager algorithm. PROJ defaults to the exact one for ellipsoids since 6.0; + * the series is only accurate near the central meridian. + */ + public void setApprox(boolean approx) { + this.approx = approx; + } + + public boolean isApprox() { + return approx; + } + public void initialize() { super.initialize(); + if (!spherical && !approx) { + // PROJ's default algorithm for ellipsoids (setup(): TMercAlgo::PODER_ENGSAGER) + ExtendedTransverseMercatorProjection e = new ExtendedTransverseMercatorProjection(); + e.setEllipsoid(ellipsoid); + e.setProjectionLatitude(projectionLatitude); + e.setProjectionLongitude(projectionLongitude); + e.setScaleFactor(scaleFactor); + e.setFromMetres(fromMetres); + e.initialize(); + exact = e; + } else { + exact = null; + } if (spherical) { esp = scaleFactor; ml0 = .5 * esp; @@ -131,11 +161,14 @@ public void setUTMZone(int zone) { } public ProjCoordinate project(double lplam, double lpphi, ProjCoordinate xy) { + if (exact != null) + return exact.project(lplam, lpphi, xy); if (spherical) { double cosphi = Math.cos(lpphi); double b = cosphi * Math.sin(lplam); - xy.x = ml0 * scaleFactor * Math.log((1. + b) / (1. - b)); + // ml0 already carries the scale factor (ml0 = .5 * esp, esp = k0) + xy.x = ml0 * Math.log((1. + b) / (1. - b)); double ty = cosphi * Math.cos(lplam) / Math.sqrt(1. - b * b); ty = ProjectionMath.acos(ty); if (lpphi < 0.0) @@ -167,6 +200,8 @@ public ProjCoordinate project(double lplam, double lpphi, ProjCoordinate xy) { } public ProjCoordinate projectInverse(double x, double y, ProjCoordinate out) { + if (exact != null) + return exact.projectInverse(x, y, out); if (spherical) { double h = Math.exp(x / scaleFactor); double g = .5 * (h - 1. / h); diff --git a/core/src/main/java/org/locationtech/proj4j/proj/UrmaevFlatPolarSinusoidalProjection.java b/core/src/main/java/org/locationtech/proj4j/proj/UrmaevFlatPolarSinusoidalProjection.java index db43ba5..caf5831 100644 --- a/core/src/main/java/org/locationtech/proj4j/proj/UrmaevFlatPolarSinusoidalProjection.java +++ b/core/src/main/java/org/locationtech/proj4j/proj/UrmaevFlatPolarSinusoidalProjection.java @@ -37,9 +37,9 @@ public UrmaevFlatPolarSinusoidalProjection() { } public ProjCoordinate project(double lplam, double lpphi, ProjCoordinate out) { - out.y = ProjectionMath.asin(n * Math.sin(lpphi)); - out.x = C_x * lplam * Math.cos(lpphi); - out.y = C_y * lpphi; + double phi = ProjectionMath.asin(n * Math.sin(lpphi)); + out.x = C_x * lplam * Math.cos(phi); + out.y = C_y * phi; return out; } diff --git a/core/src/main/java/org/locationtech/proj4j/proj/Wagner2Projection.java b/core/src/main/java/org/locationtech/proj4j/proj/Wagner2Projection.java index 36f0d0b..39e57e1 100644 --- a/core/src/main/java/org/locationtech/proj4j/proj/Wagner2Projection.java +++ b/core/src/main/java/org/locationtech/proj4j/proj/Wagner2Projection.java @@ -30,9 +30,9 @@ public class Wagner2Projection extends Projection { private final static double C_p2 = 0.88550; public ProjCoordinate project(double lplam, double lpphi, ProjCoordinate out) { - out.y = ProjectionMath.asin(C_p1 * Math.sin(C_p2 * lpphi)); - out.x = C_x * lplam * Math.cos(lpphi); - out.y = C_y * lpphi; + double phi = ProjectionMath.asin(C_p1 * Math.sin(C_p2 * lpphi)); + out.x = C_x * lplam * Math.cos(phi); + out.y = C_y * phi; return out; } diff --git a/core/src/main/java/org/locationtech/proj4j/proj/WinkelTripelProjection.java b/core/src/main/java/org/locationtech/proj4j/proj/WinkelTripelProjection.java index a0cf30e..03f4d4f 100644 --- a/core/src/main/java/org/locationtech/proj4j/proj/WinkelTripelProjection.java +++ b/core/src/main/java/org/locationtech/proj4j/proj/WinkelTripelProjection.java @@ -23,7 +23,7 @@ public class WinkelTripelProjection extends AitoffProjection { public WinkelTripelProjection() { - super( WINKEL, 0.636619772367581343 ); + super( WINKEL ); } public String toString() { diff --git a/core/src/main/java/org/locationtech/proj4j/units/Units.java b/core/src/main/java/org/locationtech/proj4j/units/Units.java index 075ca81..318421d 100644 --- a/core/src/main/java/org/locationtech/proj4j/units/Units.java +++ b/core/src/main/java/org/locationtech/proj4j/units/Units.java @@ -52,13 +52,24 @@ public class Units { public final static Unit FATHOMS = new Unit("fathom", "fathoms", "fath", 1.8288); public final static Unit LINKS = new Unit("link", "links", "link", 0.201168); + // Indian units, as defined by PROJ (src/units.cpp) + public final static Unit INDIAN_YARDS = new Unit("Indian yard", "Indian yards", "ind-yd", 0.91439523); + public final static Unit INDIAN_FEET = new Unit("Indian foot", "Indian feet", "ind-ft", 0.30479841); + public final static Unit INDIAN_CHAINS = new Unit("Indian chain", "Indian chains", "ind-ch", 20.11669506); + public final static Unit POINTS = new Unit("point", "points", "point", 0.0254/72.27); + /** + * The units {@code +units=} accepts, mirroring PROJ's table (src/units.cpp). + * CHAINS, FATHOMS, LINKS and US_CHAINS used to be missing here, so definitions such as + * {@code +units=link} silently fell back to metres. + */ public static Unit[] units = { DEGREES, KILOMETRES, METRES, DECIMETRES, CENTIMETRES, MILLIMETRES, - MILES, YARDS, FEET, INCHES, - US_MILES, US_YARDS, US_FEET, US_INCHES, + MILES, YARDS, FEET, INCHES, CHAINS, FATHOMS, LINKS, + US_MILES, US_YARDS, US_FEET, US_INCHES, US_CHAINS, + INDIAN_YARDS, INDIAN_FEET, INDIAN_CHAINS, NAUTICAL_MILES }; diff --git a/core/src/test/java/org/locationtech/proj4j/CoordinateTransformTest.java b/core/src/test/java/org/locationtech/proj4j/CoordinateTransformTest.java index 74fc197..2f485c7 100755 --- a/core/src/test/java/org/locationtech/proj4j/CoordinateTransformTest.java +++ b/core/src/test/java/org/locationtech/proj4j/CoordinateTransformTest.java @@ -223,11 +223,19 @@ public void testPROJ4() { checkTransformFromGeo("EPSG:2736", 34.0, -21.0, 603934.39, 7677664.39, 0.1); checkTransformFromGeo("EPSG:26916", -86.6056, 34.579, 536173.11, 3826428.04, 0.1); checkTransformFromGeo("EPSG:21781", 8.23, 46.82, 660309.34, 185586.30, 0.1); - checkTransformFromWGS84("EPSG:27700", -8.82, 49.79, -90619.28789678006, 10097.131147458786, 1E-4); - checkTransformToWGS84("EPSG:27700", 612435.55, 1234954.16, 1.9200000236235546, 60.93999999543101, 0.0); - checkTransformToWGS84("EPSG:27700", 327420.988668, 690284.547110, -3.1683134533969364, 56.0998025292667, 0.0); + // expectation refreshed for the exact (Poder/Engsager) Transverse Mercator, which PROJ + // uses by default; PROJ 9.6.0 gives -90619.287742 10097.131877 for the same transform + checkTransformFromWGS84("EPSG:27700", -8.82, 49.79, -90619.287776209, 10097.131127065, 1E-4); + // these three pin proj4j's own output for the OSGB inverse; the exact (Poder/Engsager) + // Transverse Mercator moved them by less than a millimetre, and an exactly-zero tolerance + // cannot survive an algorithm change, so they now allow ~0.1 mm. + // PROJ 9.6.0: 1.9200000234035 60.9399999899167 + checkTransformToWGS84("EPSG:27700", 612435.55, 1234954.16, 1.9200000237625294, 60.9399999957391, 1e-9); + // PROJ 9.6.0: -3.1683134533038 56.0998025230261 + checkTransformToWGS84("EPSG:27700", 327420.988668, 690284.547110, -3.1683134533973, 56.099802529278, 1e-9); checkTransformFromWGS84("EPSG:3857", -3.1683134533969364, 56.0998025292667, -352695.04030562507, 7578309.225014557, 0.0); - checkTransform("EPSG:27700", 327420.988668, 690284.547110, "EPSG:3857", -352695.04030562507, 7578309.225014557, 0.0); + // PROJ 9.6.0: -352695.040295 7578309.223769 + checkTransform("EPSG:27700", 327420.988668, 690284.547110, "EPSG:3857", -352695.04030566296, 7578309.225016817, 1e-6); checkTransform("EPSG:3857", -352695.04030562507, 7578309.225014557, "EPSG:27700", 327420.988668, 690284.547110, 0.001); checkTransform("EPSG:31469", 5439627.33, 5661628.09, "EPSG:3857", 1573657.37, 6636624.41, 0.01); checkTransform("EPSG:3857", 1573657.37, 6636624.41, "EPSG:31469", 5439627.33, 5661628.09, 0.01); diff --git a/core/src/test/java/org/locationtech/proj4j/ProjAlignmentTest.java b/core/src/test/java/org/locationtech/proj4j/ProjAlignmentTest.java new file mode 100644 index 0000000..7ff9ca1 --- /dev/null +++ b/core/src/test/java/org/locationtech/proj4j/ProjAlignmentTest.java @@ -0,0 +1,725 @@ +/******************************************************************************* + * Copyright 2026 Proj4J contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.locationtech.proj4j; + +import org.junit.Test; + +/** + * Regression tests pinning proj4j output to PROJ. + * + *

Every expected value below was produced by running the exact definition string of the test + * as a raw PROJ pipeline ({@code +proj=pipeline +step +proj=unitconvert +xy_in=deg +xy_out=rad + * +step }), cross-checked on PROJ 9.5.1 and 9.6.0. Raw pipelines matter: feeding the + * same string through PROJ's CRS machinery can rewrite it into an EPSG method with different + * parameter semantics (Oblique Mercator with {@code +gamma} becomes "Hotine Oblique Mercator + * variant B" with the azimuth dropped), which is not what {@code +proj=omerc} computes. + * + *

The cases cover the projections realigned with PROJ: parameters that used to be ignored or + * hardcoded, iterations that ran on the wrong variable, and sign/scale typos. + * + *

The ellipsoidal Equidistant Cylindrical values come from PROJ's own gie suite + * (test/gie/builtins.gie, EPSG:1028 method added in PROJ 9.8.0), because releases before 9.8 + * used the spherical formula for the ellipsoidal case. + */ +public class ProjAlignmentTest extends BaseCoordinateTransformTest { + + /** PROJ agreement is far tighter than this; the margin absorbs mlfn series rounding. */ + private static final double TOL = 1e-3; + + @Test + public void testMercatorSphere() { + final String DEF = "+proj=merc +lon_0=0 +units=m +no_defs +R=6371000"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-40.0000000000 -10"), DEF, p("-4447797.065782 -1117637.960712"), TOL); + checkTransform(GEO, p("-10.0000000000 35"), DEF, p("-1111949.266446 4159221.849395"), TOL); + checkTransform(GEO, p("0.0000000000 -60"), DEF, p("0.000000 -8390338.761308"), TOL); + checkTransform(GEO, p("40.0000000000 10"), DEF, p("4447797.065782 1117637.960712"), TOL); + } + + @Test + public void testLambertAzimuthalEqualAreaSphere() { + final String DEF = "+proj=laea +lat_0=40 +lon_0=-100 +units=m +no_defs +R=6371000"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-140.0000000000 -10"), DEF, p("-4710116.184521 -4597934.197378"), TOL); + checkTransform(GEO, p("-110.0000000000 35"), DEF, p("-909275.352809 -505995.590365"), TOL); + checkTransform(GEO, p("-100.0000000000 -60"), DEF, p("0.000000 -9760938.294222"), TOL); + checkTransform(GEO, p("-60.0000000000 10"), DEF, p("4387921.872856 -2439272.668786"), TOL); + } + + @Test + public void testCylindricalEqualAreaSphere() { + final String DEF = "+proj=cea +lat_ts=30 +lon_0=0 +units=m +no_defs +R=6371000"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-40.0000000000 -10"), DEF, p("-3851905.249845 -1277459.685457"), TOL); + checkTransform(GEO, p("-10.0000000000 35"), DEF, p("-962976.312461 4219570.765504"), TOL); + checkTransform(GEO, p("0.0000000000 -60"), DEF, p("0.000000 -6371000.000000"), TOL); + checkTransform(GEO, p("40.0000000000 10"), DEF, p("3851905.249845 1277459.685457"), TOL); + } + + @Test + public void testStereographicSphere() { + final String DEF = "+proj=stere +lat_0=40 +lon_0=-100 +k_0=1 +units=m +no_defs +R=6371000"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-140.0000000000 -10"), DEF, p("-5500937.101808 -5369919.939798"), TOL); + checkTransform(GEO, p("-110.0000000000 35"), DEF, p("-912322.705734 -507691.388164"), TOL); + checkTransform(GEO, p("-100.0000000000 -60"), DEF, p("0.000000 -15185324.276835"), TOL); + checkTransform(GEO, p("-60.0000000000 10"), DEF, p("4774096.704593 -2653949.625150"), TOL); + } + + @Test + public void testLambertConformalConicSphere() { + final String DEF = "+proj=lcc +lat_1=33 +lat_2=45 +lat_0=39 +lon_0=-96 +units=m +no_defs +R=6371000"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-136.0000000000 -10"), DEF, p("-5927621.631638 -4775898.419053"), TOL); + checkTransform(GEO, p("-106.0000000000 35"), DEF, p("-906294.972284 -392804.797003"), TOL); + checkTransform(GEO, p("-96.0000000000 -60"), DEF, p("0.000000 -20762875.225283"), TOL); + checkTransform(GEO, p("-56.0000000000 10"), DEF, p("4751303.076780 -2278256.655533"), TOL); + } + + @Test + public void testObliqueStereographicAlternativeSphere() { + final String DEF = "+proj=sterea +lat_0=52.15616055555555 +lon_0=5.38763888888889 +k_0=0.9999079 +units=m +no_defs +R=6371000"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-34.6123611111 -10"), DEF, p("-6083705.431847 -6749305.230594"), TOL); + checkTransform(GEO, p("-4.6123611111 35"), DEF, p("-930406.055790 -1865136.102128"), TOL); + checkTransform(GEO, p("5.3876388889 -60"), DEF, p("0.000000 -18944690.031437"), TOL); + checkTransform(GEO, p("45.3876388889 10"), DEF, p("5040878.145904 -3895665.498632"), TOL); + } + + @Test + public void testSwissObliqueMercatorSphere() { + final String DEF = "+proj=somerc +lat_0=46.95240555555556 +lon_0=7.439583333333333 +k_0=1 +units=m +no_defs +R=6371000"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-32.5604166667 -10"), DEF, p("-6503836.487245 -5163437.185046"), TOL); + checkTransform(GEO, p("-2.5604166667 35"), DEF, p("-927819.273926 -1278372.353807"), TOL); + checkTransform(GEO, p("7.4395833333 -60"), DEF, p("0.000000 -12128037.778315"), TOL); + checkTransform(GEO, p("47.4395833333 10"), DEF, p("4959597.441457 -2951740.787030"), TOL); + } + + @Test + public void testAzimuthalEquidistantSphere() { + final String DEF = "+proj=aeqd +lat_0=40 +lon_0=-100 +units=m +no_defs +R=6371000"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-140.0000000000 -10"), DEF, p("-4949660.436333 -4831773.165260"), TOL); + checkTransform(GEO, p("-110.0000000000 35"), DEF, p("-910289.098761 -506559.721989"), TOL); + checkTransform(GEO, p("-100.0000000000 -60"), DEF, p("0.000000 -11119492.664456"), TOL); + checkTransform(GEO, p("-60.0000000000 10"), DEF, p("4510200.066531 -2507247.866263"), TOL); + } + + @Test + public void testGeostationarySatelliteSphere() { + final String DEF = "+proj=geos +h=35785831 +lon_0=0 +units=m +no_defs +R=6371000"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-40.0000000000 -10"), DEF, p("-3849123.294923 -1053537.200487"), TOL); + checkTransform(GEO, p("-10.0000000000 35"), DEF, p("-875915.061736 3520231.189118"), TOL); + checkTransform(GEO, p("0.0000000000 -60"), DEF, p("0.000000 -5033004.582601"), TOL); + checkTransform(GEO, p("40.0000000000 10"), DEF, p("3849123.294923 1053537.200487"), TOL); + } + + @Test + public void testObliqueMercatorSphere() { + final String DEF = "+proj=omerc +lat_0=-20 +lonc=140 +alpha=30 +gamma=30 +k=1 +units=m +no_defs +R=6371000"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("100.0000000000 -10"), DEF, p("-4730117.199625 552755.718062"), TOL); + checkTransform(GEO, p("130.0000000000 35"), DEF, p("-565722.835082 6551025.744486"), TOL); + checkTransform(GEO, p("140.0000000000 -60"), DEF, p("-163381.153908 -4528627.712887"), TOL); + checkTransform(GEO, p("180.0000000000 10"), DEF, p("4516712.276856 3345669.316040"), TOL); + } + + @Test + public void testCassiniEllipsoidal() { + final String DEF = "+proj=cass +lat_0=40 +lon_0=-100 +units=m +no_defs +ellps=GRS80"; + final String GEO = "+proj=latlong +ellps=GRS80"; + checkTransform(GEO, p("-140.0000000000 -10"), DEF, p("-4372795.965252 -5853655.505405"), TOL); + checkTransform(GEO, p("-110.0000000000 35"), DEF, p("-911345.180793 -508889.650875"), TOL); + checkTransform(GEO, p("-100.0000000000 -60"), DEF, p("0.000000 -11083601.849604"), TOL); + checkTransform(GEO, p("-60.0000000000 10"), DEF, p("4372795.965252 -3005402.555068"), TOL); + } + + @Test + public void testCassiniSphere() { + final String DEF = "+proj=cass +lat_0=40 +lon_0=-100 +units=m +no_defs +R=6371000"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-140.0000000000 -10"), DEF, p("-4367008.414885 -5889158.967315"), TOL); + checkTransform(GEO, p("-110.0000000000 35"), DEF, p("-909322.395016 -510030.729443"), TOL); + checkTransform(GEO, p("-100.0000000000 -60"), DEF, p("0.000000 -11119492.664456"), TOL); + checkTransform(GEO, p("-60.0000000000 10"), DEF, p("4367008.414885 -3006435.164250"), TOL); + } + + @Test + public void testPolyconicEllipsoidal() { + final String DEF = "+proj=poly +lat_0=40 +lon_0=-100 +units=m +no_defs +ellps=GRS80"; + final String GEO = "+proj=latlong +ellps=GRS80"; + checkTransform(GEO, p("-140.0000000000 -10"), DEF, p("-4374840.323011 -5800888.519586"), TOL); + checkTransform(GEO, p("-110.0000000000 35"), DEF, p("-911357.703482 -509280.907751"), TOL); + checkTransform(GEO, p("-100.0000000000 -60"), DEF, p("0.000000 -11083601.849604"), TOL); + checkTransform(GEO, p("-60.0000000000 10"), DEF, p("4374840.323011 -3058169.540887"), TOL); + } + + @Test + public void testRectangularPolyconic() { + final String DEF = "+proj=rpoly +lat_ts=40 +lon_0=0 +units=m +no_defs +R=6371000"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-40.0000000000 -10"), DEF, p("-4438371.900094 -1385587.136331"), TOL); + checkTransform(GEO, p("-10.0000000000 35"), DEF, p("-909528.535900 3937395.770822"), TOL); + checkTransform(GEO, p("0.0000000000 -60"), DEF, p("0.000000 -6671695.598674"), TOL); + checkTransform(GEO, p("40.0000000000 10"), DEF, p("4438371.900094 1385587.136331"), TOL); + } + + @Test + public void testEuler() { + final String DEF = "+proj=euler +lat_1=20 +lat_2=60 +lon_0=0 +units=m +no_defs +R=6371000"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-40.0000000000 -10"), DEF, p("-5565588.554796 131726.310845"), TOL); + checkTransform(GEO, p("-10.0000000000 35"), DEF, p("-885446.379475 3940537.024276"), TOL); + checkTransform(GEO, p("0.0000000000 -60"), DEF, p("0.000000 -6671695.598674"), TOL); + checkTransform(GEO, p("40.0000000000 10"), DEF, p("4618960.918382 2144093.276031"), TOL); + } + + @Test + public void testMurdoch1() { + final String DEF = "+proj=murd1 +lat_1=20 +lat_2=60 +units=m +no_defs +R=6371000"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-40.0000000000 -10"), DEF, p("-5639553.289443 175097.959007"), TOL); + checkTransform(GEO, p("-10.0000000000 35"), DEF, p("-895102.443414 3942084.859019"), TOL); + checkTransform(GEO, p("0.0000000000 -60"), DEF, p("0.000000 -6671695.598674"), TOL); + checkTransform(GEO, p("40.0000000000 10"), DEF, p("4674737.144164 2178808.140247"), TOL); + } + + @Test + public void testMurdoch2() { + final String DEF = "+proj=murd2 +lat_1=20 +lat_2=60 +units=m +no_defs +R=6371000"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-40.0000000000 -10"), DEF, p("-6301388.378708 -854149.432091"), TOL); + checkTransform(GEO, p("-10.0000000000 35"), DEF, p("-859353.683320 4835287.855980"), TOL); + checkTransform(GEO, p("0.0000000000 -60"), DEF, p("0.000000 41477640.223015"), TOL); + checkTransform(GEO, p("40.0000000000 10"), DEF, p("4651804.606758 2695655.571591"), TOL); + } + + @Test + public void testMurdoch3() { + final String DEF = "+proj=murd3 +lat_1=20 +lat_2=60 +units=m +no_defs +R=6371000"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-40.0000000000 -10"), DEF, p("-5683305.299005 214163.430069"), TOL); + checkTransform(GEO, p("-10.0000000000 35"), DEF, p("-896367.720028 3943248.073242"), TOL); + checkTransform(GEO, p("0.0000000000 -60"), DEF, p("0.000000 -6671695.598674"), TOL); + checkTransform(GEO, p("40.0000000000 10"), DEF, p("4699066.609065 2208404.861245"), TOL); + } + + @Test + public void testPerspectiveConic() { + final String DEF = "+proj=pconic +lat_1=20 +lat_2=60 +lon_0=0 +units=m +no_defs +R=6371000"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-40.0000000000 -10"), DEF, p("-6190696.041636 -698434.389923"), TOL); + checkTransform(GEO, p("-10.0000000000 35"), DEF, p("-857392.520808 4547875.689076"), TOL); + checkTransform(GEO, p("0.0000000000 -60"), DEF, p("0.000000 38976232.445180"), TOL); + checkTransform(GEO, p("40.0000000000 10"), DEF, p("4594902.982649 2615675.572982"), TOL); + } + + @Test + public void testVitkovsky1() { + final String DEF = "+proj=vitk1 +lat_1=20 +lat_2=60 +units=m +no_defs +R=6371000"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-40.0000000000 -10"), DEF, p("-5791807.623849 268352.385725"), TOL); + checkTransform(GEO, p("-10.0000000000 35"), DEF, p("-914749.689995 3945386.219458"), TOL); + checkTransform(GEO, p("0.0000000000 -60"), DEF, p("0.000000 -6671695.598674"), TOL); + checkTransform(GEO, p("40.0000000000 10"), DEF, p("4788778.427251 2253209.336583"), TOL); + } + + @Test + public void testPutninsP2() { + final String DEF = "+proj=putp2 +units=m +no_defs +R=6371000"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-40.0000000000 -10"), DEF, p("-4165623.497010 -1172159.735265"), TOL); + checkTransform(GEO, p("-10.0000000000 35"), DEF, p("-904441.893961 4044941.064788"), TOL); + checkTransform(GEO, p("0.0000000000 -60"), DEF, p("0.000000 -6725129.373954"), TOL); + checkTransform(GEO, p("40.0000000000 10"), DEF, p("4165623.497010 1172159.735265"), TOL); + } + + @Test + public void testNell() { + final String DEF = "+proj=nell +units=m +no_defs +R=6371000"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-40.0000000000 -10"), DEF, p("-4414182.970763 -1109109.386006"), TOL); + checkTransform(GEO, p("-10.0000000000 35"), DEF, p("-1017822.743900 3761645.527075"), TOL); + checkTransform(GEO, p("0.0000000000 -60"), DEF, p("0.000000 -5926748.099252"), TOL); + checkTransform(GEO, p("40.0000000000 10"), DEF, p("4414182.970763 1109109.386006"), TOL); + } + + @Test + public void testWagner1() { + final String DEF = "+proj=wag1 +units=m +no_defs +R=6371000"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-40.0000000000 -10"), DEF, p("-3858040.603872 -1265725.337175"), TOL); + checkTransform(GEO, p("-10.0000000000 35"), DEF, p("-846731.613888 4358614.437275"), TOL); + checkTransform(GEO, p("0.0000000000 -60"), DEF, p("0.000000 -7110752.505071"), TOL); + checkTransform(GEO, p("40.0000000000 10"), DEF, p("3858040.603872 1265725.337175"), TOL); + } + + @Test + public void testWagner2() { + final String DEF = "+proj=wag2 +units=m +no_defs +R=6371000"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-40.0000000000 -10"), DEF, p("-4075521.353202 -1201232.754217"), TOL); + checkTransform(GEO, p("-10.0000000000 35"), DEF, p("-916667.697001 4157526.318258"), TOL); + checkTransform(GEO, p("0.0000000000 -60"), DEF, p("0.000000 -6904914.035314"), TOL); + checkTransform(GEO, p("40.0000000000 10"), DEF, p("4075521.353202 1201232.754217"), TOL); + } + + @Test + public void testLoximuthal() { + final String DEF = "+proj=loxim +lat_1=40 +units=m +no_defs +R=6371000"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-40.0000000000 -10"), DEF, p("-4136511.129062 -5559746.332228"), TOL); + checkTransform(GEO, p("-10.0000000000 35"), DEF, p("-881558.740973 -555974.633223"), TOL); + checkTransform(GEO, p("0.0000000000 -60"), DEF, p("0.000000 -11119492.664456"), TOL); + checkTransform(GEO, p("40.0000000000 10"), DEF, p("3964128.047273 -3335847.799337"), TOL); + } + + @Test + public void testMcBrydeThomasFlatPolarParabolic() { + final String DEF = "+proj=mbtfpp +units=m +no_defs +R=6371000"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-40.0000000000 -10"), DEF, p("-4067371.831192 -1199857.840082"), TOL); + checkTransform(GEO, p("-10.0000000000 35"), DEF, p("-878473.500465 4149937.264394"), TOL); + checkTransform(GEO, p("0.0000000000 -60"), DEF, p("0.000000 -6886729.497187"), TOL); + checkTransform(GEO, p("40.0000000000 10"), DEF, p("4067371.831192 1199857.840082"), TOL); + } + + @Test + public void testMcBrydeThomasFlatPolarQuartic() { + final String DEF = "+proj=mbtfpq +units=m +no_defs +R=6371000"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-40.0000000000 -10"), DEF, p("-4128126.541582 -1184107.674879"), TOL); + checkTransform(GEO, p("-10.0000000000 35"), DEF, p("-915603.706840 4059479.225723"), TOL); + checkTransform(GEO, p("0.0000000000 -60"), DEF, p("0.000000 -6629240.189416"), TOL); + checkTransform(GEO, p("40.0000000000 10"), DEF, p("4128126.541582 1184107.674879"), TOL); + } + + @Test + public void testMcBrydeThomasFlatPolarSine2() { + final String DEF = "+proj=mbt_fps +units=m +no_defs +R=6371000"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-40.0000000000 -10"), DEF, p("-3934458.340917 -1245615.425908"), TOL); + checkTransform(GEO, p("-10.0000000000 35"), DEF, p("-912592.405417 4209222.112965"), TOL); + checkTransform(GEO, p("0.0000000000 -60"), DEF, p("0.000000 -6684397.416439"), TOL); + checkTransform(GEO, p("40.0000000000 10"), DEF, p("3934458.340917 1245615.425908"), TOL); + } + + @Test + public void testEquidistantCylindricalSphere() { + final String DEF = "+proj=eqc +lat_ts=30 +lat_0=0 +lon_0=0 +units=m +no_defs +R=6371000"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-40.0000000000 -10"), DEF, p("-3851905.249845 -1111949.266446"), TOL); + checkTransform(GEO, p("-10.0000000000 35"), DEF, p("-962976.312461 3891822.432560"), TOL); + checkTransform(GEO, p("0.0000000000 -60"), DEF, p("0.000000 -6671695.598674"), TOL); + checkTransform(GEO, p("40.0000000000 10"), DEF, p("3851905.249845 1111949.266446"), TOL); + } + + @Test + public void testEquidistantConicEllipsoidal() { + final String DEF = "+proj=eqdc +lat_1=29.5 +lat_2=45.5 +lat_0=37.5 +lon_0=-96 +units=m +no_defs +ellps=GRS80"; + final String GEO = "+proj=latlong +ellps=GRS80"; + checkTransform(GEO, p("-136.0000000000 -10"), DEF, p("-5560356.875893 -4062094.031217"), TOL); + checkTransform(GEO, p("-106.0000000000 35"), DEF, p("-903375.180874 -229525.027675"), TOL); + checkTransform(GEO, p("-96.0000000000 -60"), DEF, p("0.000000 -10806074.961897"), TOL); + checkTransform(GEO, p("-56.0000000000 10"), DEF, p("4651142.583965 -2045912.238870"), TOL); + } + + @Test + public void testBonneEllipsoidal() { + final String DEF = "+proj=bonne +lat_1=40 +units=m +no_defs +ellps=GRS80"; + final String GEO = "+proj=latlong +ellps=GRS80"; + checkTransform(GEO, p("-40.0000000000 -10"), DEF, p("-4304692.418309 -4810676.579880"), TOL); + checkTransform(GEO, p("-10.0000000000 35"), DEF, p("-910981.780849 -503967.442379"), TOL); + checkTransform(GEO, p("0.0000000000 -60"), DEF, p("0.000000 -11083601.849604"), TOL); + checkTransform(GEO, p("40.0000000000 10"), DEF, p("4268956.019146 -2455992.210456"), TOL); + } + + @Test + public void testWinkelTripel() { + final String DEF = "+proj=wintri +lat_1=50 +units=m +no_defs +R=6371000"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-40.0000000000 -10"), DEF, p("-3630394.590084 -1123306.834304"), TOL); + checkTransform(GEO, p("-10.0000000000 35"), DEF, p("-842344.439056 3894034.327492"), TOL); + checkTransform(GEO, p("0.0000000000 -60"), DEF, p("0.000000 -6671695.598674"), TOL); + checkTransform(GEO, p("40.0000000000 10"), DEF, p("3630394.590084 1123306.834304"), TOL); + } + + @Test + public void testRobinson() { + final String DEF = "+proj=robin +units=m +no_defs +R=6371000"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-40.0000000000 -10"), DEF, p("-3757481.124588 -1068322.391740"), TOL); + checkTransform(GEO, p("-10.0000000000 35"), DEF, p("-889636.709331 3739128.306900"), TOL); + checkTransform(GEO, p("0.0000000000 -60"), DEF, p("0.000000 -6328948.789089"), TOL); + checkTransform(GEO, p("40.0000000000 10"), DEF, p("3757481.124588 1068322.391740"), TOL); + } + + @Test + public void testTransverseMercatorSphere() { + final String DEF = "+proj=tmerc +lat_0=0 +lon_0=-100 +k_0=0.9996 +units=m +no_defs +R=6371000"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-140.0000000000 -10"), DEF, p("-4753687.403062 -1440785.356772"), TOL); + checkTransform(GEO, p("-110.0000000000 35"), DEF, p("-912060.601365 3936191.229805"), TOL); + checkTransform(GEO, p("-100.0000000000 -60"), DEF, p("0.000000 -6669026.920434"), TOL); + checkTransform(GEO, p("-60.0000000000 10"), DEF, p("4753687.403062 1440785.356772"), TOL); + } + + @Test + public void testTransverseMercatorEllipsoidal() { + final String DEF = "+proj=tmerc +lat_0=0 +lon_0=-100 +k_0=0.9996 +units=m +no_defs +ellps=GRS80"; + final String GEO = "+proj=latlong +ellps=GRS80"; + checkTransform(GEO, p("-140.0000000000 -10"), DEF, p("-4762571.089019 -1436121.199615"), TOL); + checkTransform(GEO, p("-110.0000000000 35"), DEF, p("-914103.307216 3919073.949813"), TOL); + checkTransform(GEO, p("-100.0000000000 -60"), DEF, p("0.000000 -6651411.190240"), TOL); + checkTransform(GEO, p("-60.0000000000 10"), DEF, p("4762571.089019 1436121.199615"), TOL); + } + + @Test + public void testBipolar() { + final String DEF = "+proj=bipc +lon_0=0 +units=m +no_defs +R=6371000"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-40.0000000000 -10"), DEF, p("-4584907.682439 -539386.863518"), TOL); + checkTransform(GEO, p("-10.0000000000 35"), DEF, p("1335526.215700 -10385631.800272"), TOL); + checkTransform(GEO, p("40.0000000000 10"), DEF, p("6513158.681324 -13541757.295967"), TOL); + } + + @Test + public void testNearSidedPerspective() { + final String DEF = "+proj=nsper +h=10000000 +lat_0=40 +lon_0=-100 +units=m +no_defs +ellps=GRS80"; + final String GEO = "+proj=latlong +ellps=GRS80"; + checkTransform(GEO, p("-140.0000000000 -10"), DEF, p("-3012145.435203 -2940404.431956"), TOL); + checkTransform(GEO, p("-110.0000000000 35"), DEF, p("-899600.024832 -500611.442124"), TOL); + checkTransform(GEO, p("-60.0000000000 10"), DEF, p("3370136.507404 -1873479.544711"), TOL); + } + + @Test + public void testHammer() { + final String DEF = "+proj=hammer +W=0.5 +M=1.0 +units=m +no_defs +R=6371000"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-40.0000000000 -10"), DEF, p("-4374147.147630 -1127536.162368"), TOL); + checkTransform(GEO, p("-10.0000000000 35"), DEF, p("-954665.060687 3834880.243598"), TOL); + checkTransform(GEO, p("0.0000000000 -60"), DEF, p("0.000000 -6371000.000000"), TOL); + checkTransform(GEO, p("40.0000000000 10"), DEF, p("4374147.147630 1127536.162368"), TOL); + } + + @Test + public void testLagrange() { + final String DEF = "+proj=lagrng +W=2 +units=m +no_defs +R=6371000"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-40.0000000000 -10"), DEF, p("-2242308.613879 -575789.816319"), TOL); + checkTransform(GEO, p("-10.0000000000 35"), DEF, p("-541740.920927 2065167.005061"), TOL); + checkTransform(GEO, p("0.0000000000 -60"), DEF, p("0.000000 -4049882.178285"), TOL); + checkTransform(GEO, p("40.0000000000 10"), DEF, p("2242308.613879 575789.816319"), TOL); + } + + @Test + public void testUrmaevFlatPolarSinusoidal() { + final String DEF = "+proj=urmfps +n=0.9 +units=m +no_defs +R=6371000"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-40.0000000000 -10"), DEF, p("-3854468.171004 -1266113.773309"), TOL); + checkTransform(GEO, p("-10.0000000000 35"), DEF, p("-835563.502846 4376428.374441"), TOL); + checkTransform(GEO, p("0.0000000000 -60"), DEF, p("0.000000 -7210895.774003"), TOL); + checkTransform(GEO, p("40.0000000000 10"), DEF, p("3854468.171004 1266113.773309"), TOL); + } + + @Test + public void testLandsat() { + final String DEF = "+proj=lsat +lsat=2 +path=2 +units=m +no_defs +ellps=GRS80"; + final String GEO = "+proj=latlong +ellps=GRS80"; + checkTransform(GEO, p("-40.0000000000 -10"), DEF, p("21109528.165580 3177843.238687"), TOL); + checkTransform(GEO, p("-10.0000000000 35"), DEF, p("14338233.286565 4741896.597415"), TOL); + checkTransform(GEO, p("0.0000000000 -60"), DEF, p("29064377.065379 3608232.532453"), TOL); + checkTransform(GEO, p("40.0000000000 10"), DEF, p("43238230.915922 7412513.162265"), TOL); + } + + @Test + public void testLambertEqualAreaConic() { + final String DEF = "+proj=leac +lat_1=40 +units=m +no_defs +R=6371000"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-40.0000000000 -10"), DEF, p("-5843005.724467 894160.771416"), TOL); + checkTransform(GEO, p("-10.0000000000 35"), DEF, p("-927486.600110 3516146.182578"), TOL); + checkTransform(GEO, p("0.0000000000 -60"), DEF, p("0.000000 -3638799.445252"), TOL); + checkTransform(GEO, p("40.0000000000 10"), DEF, p("4902863.948367 2349862.480660"), TOL); + } + + @Test + public void testMercatorLatTs() { + final String DEF = "+proj=merc +lon_0=0 +lat_ts=42 +ellps=krass +units=m +no_defs"; + final String GEO = "+proj=latlong +ellps=krass"; + checkTransform(GEO, p("-8.0000000000 40"), DEF, p("-662817.173242 3601148.955488"), TOL); + checkTransform(GEO, p("-2.0000000000 -12"), DEF, p("-165704.293311 -994968.238345"), TOL); + checkTransform(GEO, p("0.0000000000 0"), DEF, p("0.000000 0.000000"), TOL); + checkTransform(GEO, p("8.0000000000 12"), DEF, p("662817.173242 994968.238345"), TOL); + } + + @Test + public void testMercatorLatTsSphere() { + final String DEF = "+proj=merc +lon_0=0 +lat_ts=-41 +R=6371000 +units=m +no_defs"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-8.0000000000 40"), DEF, p("-671359.011287 3668263.947384"), TOL); + checkTransform(GEO, p("-2.0000000000 -12"), DEF, p("-167839.752822 -1014482.571865"), TOL); + checkTransform(GEO, p("0.0000000000 0"), DEF, p("0.000000 0.000000"), TOL); + checkTransform(GEO, p("8.0000000000 12"), DEF, p("671359.011287 1014482.571865"), TOL); + } + + @Test + public void testMercatorScaleFactor() { + final String DEF = "+proj=merc +lon_0=0 +k_0=0.9996 +ellps=GRS80 +units=m +no_defs"; + final String GEO = "+proj=latlong +ellps=GRS80"; + checkTransform(GEO, p("-8.0000000000 40"), DEF, p("-890199.703976 4836536.009367"), TOL); + checkTransform(GEO, p("-2.0000000000 -12"), DEF, p("-222549.925994 -1336295.474500"), TOL); + checkTransform(GEO, p("0.0000000000 0"), DEF, p("0.000000 0.000000"), TOL); + checkTransform(GEO, p("8.0000000000 12"), DEF, p("890199.703976 1336295.474500"), TOL); + } + + @Test + public void testCylindricalEqualAreaScaleFactor() { + final String DEF = "+proj=cea +lon_0=0 +k_0=0.99 +ellps=GRS80 +units=m +no_defs"; + final String GEO = "+proj=latlong +ellps=GRS80"; + checkTransform(GEO, p("-8.0000000000 40"), DEF, p("-881650.367083 4121080.731921"), TOL); + checkTransform(GEO, p("-2.0000000000 -12"), DEF, p("-220412.591771 -1330773.823329"), TOL); + checkTransform(GEO, p("0.0000000000 0"), DEF, p("0.000000 0.000000"), TOL); + checkTransform(GEO, p("8.0000000000 12"), DEF, p("881650.367083 1330773.823329"), TOL); + } + + @Test + public void testCylindricalEqualAreaLatTs() { + final String DEF = "+proj=cea +lon_0=0 +lat_ts=45 +ellps=GRS80 +units=m +no_defs"; + final String GEO = "+proj=latlong +ellps=GRS80"; + checkTransform(GEO, p("-8.0000000000 40"), DEF, p("-630774.680757 5760142.965338"), TOL); + checkTransform(GEO, p("-2.0000000000 -12"), DEF, p("-157693.670189 -1860057.585752"), TOL); + checkTransform(GEO, p("0.0000000000 0"), DEF, p("0.000000 0.000000"), TOL); + checkTransform(GEO, p("8.0000000000 12"), DEF, p("630774.680757 1860057.585752"), TOL); + } + + @Test + public void testEquidistantCylindricalLatTs() { + final String DEF = "+proj=eqc +lat_ts=45 +lat_0=10 +lon_0=0 +R=6371000 +units=m +no_defs"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-8.0000000000 40"), DEF, p("-629013.493311 3335847.799337"), TOL); + checkTransform(GEO, p("-2.0000000000 -12"), DEF, p("-157253.373328 -2446288.386180"), TOL); + checkTransform(GEO, p("0.0000000000 0"), DEF, p("0.000000 -1111949.266446"), TOL); + checkTransform(GEO, p("8.0000000000 12"), DEF, p("629013.493311 222389.853289"), TOL); + } + + @Test + public void testObliqueMercatorAlphaOnly() { + final String DEF = "+proj=omerc +lat_0=-20 +lonc=140 +alpha=30 +k=1 +ellps=GRS80 +units=m +no_defs"; + final String GEO = "+proj=latlong +ellps=GRS80"; + checkTransform(GEO, p("132.0000000000 40"), DEF, p("-181571.158681 7083423.012735"), TOL); + checkTransform(GEO, p("138.0000000000 -12"), DEF, p("-217349.122501 885969.025378"), TOL); + checkTransform(GEO, p("140.0000000000 0"), DEF, p("19538.822390 2223266.627685"), TOL); + checkTransform(GEO, p("148.0000000000 12"), DEF, p("970515.884590 3528572.166731"), TOL); + } + + @Test + public void testObliqueMercatorGammaOnly() { + final String DEF = "+proj=omerc +lat_0=-20 +lonc=140 +gamma=30 +k=1 +ellps=GRS80 +units=m +no_defs"; + final String GEO = "+proj=latlong +ellps=GRS80"; + checkTransform(GEO, p("132.0000000000 40"), DEF, p("-422662.981565 7120436.559295"), TOL); + checkTransform(GEO, p("138.0000000000 -12"), DEF, p("-250223.893298 877372.339351"), TOL); + checkTransform(GEO, p("140.0000000000 0"), DEF, p("-62492.365753 2223943.117701"), TOL); + checkTransform(GEO, p("148.0000000000 12"), DEF, p("845514.753589 3564498.149713"), TOL); + } + + @Test + public void testObliqueMercatorNoUoff() { + final String DEF = "+proj=omerc +lat_0=4 +lonc=115 +alpha=53.31580995 +gamma=53.13010236 +k=0.99984 +no_uoff +ellps=GRS80 +units=m +no_defs"; + final String GEO = "+proj=latlong +ellps=GRS80"; + checkTransform(GEO, p("107.0000000000 40"), DEF, p("-64271.131967 4696229.327760"), TOL); + checkTransform(GEO, p("113.0000000000 -12"), DEF, p("362348.959094 -1337630.240063"), TOL); + checkTransform(GEO, p("115.0000000000 0"), DEF, p("591784.038761 429.566246"), TOL); + checkTransform(GEO, p("123.0000000000 12"), DEF, p("1462479.435461 1336743.543334"), TOL); + } + + @Test + public void testLambertEqualAreaConicSouth() { + final String DEF = "+proj=leac +lat_1=40 +south +R=6371000 +units=m +no_defs"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-8.0000000000 40"), DEF, p("-681371.414832 5997441.823984"), TOL); + checkTransform(GEO, p("-2.0000000000 -12"), DEF, p("-118293.862854 -2345639.351903"), TOL); + checkTransform(GEO, p("0.0000000000 0"), DEF, p("0.000000 0.000000"), TOL); + checkTransform(GEO, p("8.0000000000 12"), DEF, p("584266.240302 2104405.499609"), TOL); + } + + @Test + public void testTransverseMercatorSouth() { + final String DEF = "+proj=tmerc +lat_0=0 +lon_0=15 +k_0=0.9996 +x_0=500000 +south +ellps=GRS80 +units=m +no_defs"; + final String GEO = "+proj=latlong +ellps=GRS80"; + checkTransform(GEO, p("7.0000000000 40"), DEF, p("-183262.578000 4458528.156743"), TOL); + checkTransform(GEO, p("13.0000000000 -12"), DEF, p("282241.145312 -1327344.064148"), TOL); + checkTransform(GEO, p("15.0000000000 0"), DEF, p("500000.000000 0.000000"), TOL); + checkTransform(GEO, p("23.0000000000 12"), DEF, p("1373486.033052 1339293.568932"), TOL); + } + + @Test + public void testLandsatPath100() { + final String DEF = "+proj=lsat +lsat=5 +path=100 +ellps=GRS80 +units=m +no_defs"; + final String GEO = "+proj=latlong +ellps=GRS80"; + checkTransform(GEO, p("-8.0000000000 40"), DEF, p("45591791.111054 -4081312.869184"), TOL); + checkTransform(GEO, p("-2.0000000000 -12"), DEF, p("37872960.160127 -5523114.412502"), TOL); + checkTransform(GEO, p("0.0000000000 0"), DEF, p("39632018.797881 -6337233.926139"), TOL); + checkTransform(GEO, p("8.0000000000 12"), DEF, p("41875112.451760 -7982907.947467"), TOL); + } + + @Test + public void testHammerWM() { + final String DEF = "+proj=hammer +W=0.4 +M=1.2 +R=6371000 +units=m +no_defs"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-8.0000000000 40"), DEF, p("-870052.513300 3632912.635772"), TOL); + checkTransform(GEO, p("-2.0000000000 -12"), DEF, p("-262471.778875 -1109944.815563"), TOL); + checkTransform(GEO, p("0.0000000000 0"), DEF, p("0.000000 0.000000"), TOL); + checkTransform(GEO, p("8.0000000000 12"), DEF, p("1049754.952856 1110346.189871"), TOL); + } + + @Test + public void testLagrangeW() { + final String DEF = "+proj=lagrng +W=1.5 +lat_1=30 +R=6371000 +units=m +no_defs"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-8.0000000000 40"), DEF, p("-590463.205390 907670.095531"), TOL); + checkTransform(GEO, p("-2.0000000000 -12"), DEF, p("-139136.043616 -3162219.389496"), TOL); + checkTransform(GEO, p("0.0000000000 0"), DEF, p("0.000000 -2307357.975765"), TOL); + checkTransform(GEO, p("8.0000000000 12"), DEF, p("585968.136375 -1433955.295168"), TOL); + } + + @Test + public void testUrmaevN() { + final String DEF = "+proj=urmfps +n=0.7 +R=6371000 +units=m +no_defs"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-8.0000000000 40"), DEF, p("-697013.655872 4841371.341430"), TOL); + checkTransform(GEO, p("-2.0000000000 -12"), DEF, p("-193043.479958 -1515104.775840"), TOL); + checkTransform(GEO, p("0.0000000000 0"), DEF, p("0.000000 0.000000"), TOL); + checkTransform(GEO, p("8.0000000000 12"), DEF, p("772173.919832 1515104.775840"), TOL); + } + + @Test + public void testWinkelTripelLat1() { + final String DEF = "+proj=wintri +lat_1=40 +R=6371000 +units=m +no_defs"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-8.0000000000 40"), DEF, p("-710736.164758 4449351.975557"), TOL); + checkTransform(GEO, p("-2.0000000000 -12"), DEF, p("-194744.490592 -1334372.594105"), TOL); + checkTransform(GEO, p("0.0000000000 0"), DEF, p("0.000000 0.000000"), TOL); + checkTransform(GEO, p("8.0000000000 12"), DEF, p("778974.030898 1334874.989755"), TOL); + } + + @Test + public void testRectangularPolyconicLatTs() { + final String DEF = "+proj=rpoly +lat_ts=30 +lat_0=10 +lon_0=0 +R=6371000 +units=m +no_defs"; + final String GEO = "+proj=latlong +R=6371000"; + checkTransform(GEO, p("-8.0000000000 40"), DEF, p("-680347.775253 3366390.839719"), TOL); + checkTransform(GEO, p("-2.0000000000 -12"), DEF, p("-217532.758976 -2447077.776817"), TOL); + checkTransform(GEO, p("0.0000000000 0"), DEF, p("0.000000 -1111949.266446"), TOL); + checkTransform(GEO, p("8.0000000000 12"), DEF, p("870290.477390 235027.230314"), TOL); + } + + @Test + public void testNearSidedPerspectiveOblique() { + final String DEF = "+proj=nsper +h=5000000 +lat_0=-30 +lon_0=20 +ellps=GRS80 +units=m +no_defs"; + final String GEO = "+proj=latlong +ellps=GRS80"; + checkTransform(GEO, p("18.0000000000 -12"), DEF, p("-204807.844732 1852194.021510"), TOL); + checkTransform(GEO, p("20.0000000000 0"), DEF, p("0.000000 2723600.617411"), TOL); + checkTransform(GEO, p("28.0000000000 12"), DEF, p("648848.054039 3166605.475805"), TOL); + } + + @Test + public void testEquidistantConicSouth() { + final String DEF = "+proj=eqdc +lat_1=-20 +lat_2=-40 +lat_0=-30 +lon_0=130 +ellps=GRS80 +units=m +no_defs"; + final String GEO = "+proj=latlong +ellps=GRS80"; + checkTransform(GEO, p("122.0000000000 40"), DEF, p("-1297543.511494 7704554.255150"), TOL); + checkTransform(GEO, p("128.0000000000 -12"), DEF, p("-224657.963509 1991078.011533"), TOL); + checkTransform(GEO, p("130.0000000000 0"), DEF, p("0.000000 3320113.397845"), TOL); + checkTransform(GEO, p("138.0000000000 12"), DEF, p("1082190.651007 4609592.963371"), TOL); + } + + @Test + public void testEquidistantCylindricalEllipsoidal() { + // PROJ test/gie/builtins.gie, "Ellipsoidal case (EPSG:1028)" + final String GEO = "+proj=latlong +ellps=WGS84"; + final String DEF0 = "+proj=eqc +ellps=WGS84 +lat_ts=0 +units=m +no_defs"; + checkTransform(GEO, p("10 55"), DEF0, p("1113194.91 6097230.31"), 0.01); + checkTransform(GEO, p("10 -45"), DEF0, p("1113194.90793 -4984944.37798"), TOL); + checkTransform(GEO, p("180 30"), DEF0, p("20037508.34279 3320113.39794"), TOL); + checkTransform(GEO, p("0 89"), DEF0, p("0.0 9890271.86440"), TOL); + checkTransform(GEO, p("-122.4194 37.7749"), DEF0, p("-13627665.27122 4182513.19136"), TOL); + + // the nu1 * cos(lat_ts) easting scale + final String DEF45 = "+proj=eqc +ellps=WGS84 +lat_ts=45 +units=m +no_defs"; + checkTransform(GEO, p("2 49"), DEF45, p("157693.670 5429627.632"), 0.01); + checkTransform(GEO, p("10 70"), DEF45, p("788468.351 7768980.728"), 0.01); + + // the meridional arc offset M0 taken at lat_0 + final String DEF30 = "+proj=eqc +ellps=WGS84 +lat_ts=30 +lat_0=45 +units=m +no_defs"; + checkTransform(GEO, p("0 45"), DEF30, p("0.0 0.0"), 0.01); + checkTransform(GEO, p("0 60"), DEF30, p("0.0 1669128.442"), 0.01); + checkTransform(GEO, p("0 30"), DEF30, p("0.0 -1664830.980"), 0.01); + } + + @Test + public void testKrovakDefaults() { + // PROJ supplies Bessel 1841, lat_0=49d30', lon_0=42d30' of Ferro - 17d40' and k_0=0.9999 + final String GEO = "+proj=latlong +ellps=bessel"; + final String DEF = "+proj=krovak +ellps=bessel +units=m +no_defs"; + checkTransform(GEO, p("14.4378 50.0755"), DEF, p("-741907.1890 -1044567.9139"), TOL); + checkTransform(GEO, p("17.1077 48.1486"), DEF, p("-573787.5518 -1280364.6891"), TOL); + checkTransform(GEO, p("21.2611 48.7164"), DEF, p("-262721.0613 -1240072.1027"), TOL); + } + + @Test + public void testKrovakCzech() { + // +czech keeps the native westing/southing orientation + final String GEO = "+proj=latlong +ellps=bessel"; + final String DEF = "+proj=krovak +czech +ellps=bessel +units=m +no_defs"; + checkTransform(GEO, p("14.4378 50.0755"), DEF, p("741907.1890 1044567.9139"), TOL); + checkTransform(GEO, p("17.1077 48.1486"), DEF, p("573787.5518 1280364.6891"), TOL); + } + + @Test + public void testNewZealandMapGrid() { + // NZMG is a fit valid only around New Zealand, on the International 1924 ellipsoid + final String GEO = "+proj=latlong +ellps=intl"; + final String DEF = "+proj=nzmg +ellps=intl +units=m +no_defs"; + checkTransform(GEO, p("174.7633 -36.8485"), DEF, p("2667665.9324 6482380.3138"), TOL); + checkTransform(GEO, p("168.6626 -45.0312"), DEF, p("2168312.5018 5566390.4195"), TOL); + } + + @Test + public void testReciprocalFlattening() { + // +rf is the reciprocal flattening and +f the flattening, as in PROJ + checkTransform("+proj=latlong +a=6378137 +rf=298.257222101", p("9 50"), + "+proj=tmerc +lat_0=0 +lon_0=9 +k_0=0.9996 +a=6378137 +rf=298.257222101 +units=m", + p("0.0 5538630.7027"), 0.01); + checkTransform("+proj=latlong +a=6378137 +f=0.0033528106811823", p("9 50"), + "+proj=tmerc +lat_0=0 +lon_0=9 +k_0=0.9996 +a=6378137 +f=0.0033528106811823 +units=m", + p("0.0 5538630.7027"), 0.01); + } + + @Test + public void testTransverseMercatorApprox() { + // +approx selects the Evenden/Snyder series; far from the central meridian it differs + // from the exact algorithm by kilometres, which is why PROJ made exact the default + final String GEO = "+proj=latlong +ellps=GRS80"; + final String DEF = "+proj=tmerc +lat_0=0 +lon_0=-100 +k_0=0.9996 +ellps=GRS80 +units=m +no_defs"; + final String APPROX = "+proj=tmerc +approx +lat_0=0 +lon_0=-100 +k_0=0.9996 +ellps=GRS80 +units=m +no_defs"; + // near the central meridian the two agree to well under a millimetre + checkTransform(GEO, p("-98 40"), DEF, p("170725.494272 4429672.973002"), 0.01); + checkTransform(GEO, p("-98 40"), APPROX, p("170725.494273 4429672.973002"), 0.01); + // 40 degrees out they do not + checkTransform(GEO, p("-60 0"), DEF, p("4867577.937708 0.0"), 0.01); + checkTransform(GEO, p("-60 0"), APPROX, p("4866119.167841 0.0"), 0.01); + } +} diff --git a/core/src/test/java/org/locationtech/proj4j/datum/DatumShiftTest.java b/core/src/test/java/org/locationtech/proj4j/datum/DatumShiftTest.java index 21c8aab..bd3b048 100644 --- a/core/src/test/java/org/locationtech/proj4j/datum/DatumShiftTest.java +++ b/core/src/test/java/org/locationtech/proj4j/datum/DatumShiftTest.java @@ -33,8 +33,8 @@ public class DatumShiftTest { @Test public void gk3ToUtm32Zn() { - String epsg31467Parameters = "+proj=tmerc +lat_0=0.0 +lon_0=9.0 +k_0=1.0 +x_0=3500000.0 +y_0=0.0 +datum=potsdam +a=6377397.155 +f=299.1528128 +towgs84=598.1,73.7,418.2,0.202,0.045,-2.455,6.7 +pm=greenwich +units=m +no_defs"; - String utm32znParameters = "+proj=tmerc +lat_0=0.0 +lon_0=9.0 +k_0=0.9996 +x_0=3.25E7 +y_0=0.0 +a=6378137.0 +f=298.257222 +pm=Greenwich +units=m +no_defs"; + String epsg31467Parameters = "+proj=tmerc +lat_0=0.0 +lon_0=9.0 +k_0=1.0 +x_0=3500000.0 +y_0=0.0 +datum=potsdam +a=6377397.155 +rf=299.1528128 +towgs84=598.1,73.7,418.2,0.202,0.045,-2.455,6.7 +pm=greenwich +units=m +no_defs"; + String utm32znParameters = "+proj=tmerc +lat_0=0.0 +lon_0=9.0 +k_0=0.9996 +x_0=3.25E7 +y_0=0.0 +a=6378137.0 +rf=298.257222 +pm=Greenwich +units=m +no_defs"; CoordinateReferenceSystem etrsCrs = crsFactory.createFromName("EPSG:4258"); CoordinateReferenceSystem wgs84Crs = crsFactory.createFromName("EPSG:4326"); @@ -62,8 +62,8 @@ public void gk3ToUtm32Zn() { @Test public void debug() { - String epsg31467Parameters = "+proj=tmerc +lat_0=0.0 +lon_0=9.0 +k_0=1.0 +x_0=3500000.0 +y_0=0.0 +datum=potsdam +a=6377397.155 +f=299.1528128 +towgs84=598.1,73.7,418.2,0.202,0.045,-2.455,6.7 +pm=greenwich +units=m +no_defs"; - String utm32znParameters = "+proj=tmerc +lat_0=0.0 +lon_0=9.0 +k_0=0.9996 +x_0=3.25E7 +y_0=0.0 +a=6378137.0 +f=298.257222101 +pm=Greenwich +units=m +no_defs"; + String epsg31467Parameters = "+proj=tmerc +lat_0=0.0 +lon_0=9.0 +k_0=1.0 +x_0=3500000.0 +y_0=0.0 +datum=potsdam +a=6377397.155 +rf=299.1528128 +towgs84=598.1,73.7,418.2,0.202,0.045,-2.455,6.7 +pm=greenwich +units=m +no_defs"; + String utm32znParameters = "+proj=tmerc +lat_0=0.0 +lon_0=9.0 +k_0=0.9996 +x_0=3.25E7 +y_0=0.0 +a=6378137.0 +rf=298.257222101 +pm=Greenwich +units=m +no_defs"; CoordinateReferenceSystem dhdnCrs = crsFactory.createFromName("EPSG:4314"); CoordinateReferenceSystem gk3Crs = crsFactory.createFromParameters("Anon", epsg31467Parameters); diff --git a/core/src/test/java/org/locationtech/proj4j/datum/TransformerTypeTest.java b/core/src/test/java/org/locationtech/proj4j/datum/TransformerTypeTest.java index 6ef6c68..256b9c6 100644 --- a/core/src/test/java/org/locationtech/proj4j/datum/TransformerTypeTest.java +++ b/core/src/test/java/org/locationtech/proj4j/datum/TransformerTypeTest.java @@ -30,7 +30,7 @@ public class TransformerTypeTest { @Test public void isTransformerTypeWgs84() { - String utm32znParameters = "+proj=tmerc +lat_0=0.0 +lon_0=9.0 +k_0=0.9996 +x_0=3.25E7 +y_0=0.0 +a=6378137.0 +f=298.257222101 +pm=Greenwich +units=m +no_defs"; + String utm32znParameters = "+proj=tmerc +lat_0=0.0 +lon_0=9.0 +k_0=0.9996 +x_0=3.25E7 +y_0=0.0 +a=6378137.0 +rf=298.257222101 +pm=Greenwich +units=m +no_defs"; CoordinateReferenceSystem utm32znCrs = crsFactory.createFromParameters("Anon", utm32znParameters); assertTrue(utm32znCrs.getDatum().getTransformType() == Datum.TYPE_WGS84); diff --git a/core/src/test/resources/proj4-epsg.csv b/core/src/test/resources/proj4-epsg.csv index 30fbc07..63b5a8f 100644 --- a/core/src/test/resources/proj4-epsg.csv +++ b/core/src/test/resources/proj4-epsg.csv @@ -495,30 +495,30 @@ "4326 -> 7136","passing","EPSG","4326","EPSG","7136","1.0","-1.0","0.0","1.0","-1.0","0.0","0.000001","0.000001","0.000001","","","","Auto-generated from proj.4 epsg database" "4326 -> 7139","passing","EPSG","4326","EPSG","7139","1.0","-1.0","0.0","1.0","-1.0","0.0","0.000001","0.000001","0.000001","","","","Auto-generated from proj.4 epsg database" "4326 -> 7373","passing","EPSG","4326","EPSG","7373","1.0","-1.0","0.0","1.0","-1.0","0.0","0.000001","0.000001","0.000001","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2000","passing","EPSG","4326","EPSG","2000","1.0","-1.0","0.0","9413505.328467","-237337.745159","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2001","passing","EPSG","4326","EPSG","2001","1.0","-1.0","0.0","9413522.181089","-237507.225981","144.384786","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2002","passing","EPSG","4326","EPSG","2002","1.0","-1.0","0.0","9412080.888572","-238498.955283","-839.356403","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2003","passing","EPSG","4326","EPSG","2003","1.0","-1.0","0.0","9413059.731344","-237552.824851","-186.118484","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2004","passing","EPSG","4326","EPSG","2004","1.0","-1.0","0.0","9412745.996687","-238131.162481","-285.858899","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2005","passing","EPSG","4326","EPSG","2005","1.0","-1.0","0.0","9413111.969729","-237859.036361","-120.103216","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2006","passing","EPSG","4326","EPSG","2006","1.0","-1.0","0.0","9413216.306967","-237985.053343","39.856758","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2007","passing","EPSG","4326","EPSG","2007","1.0","-1.0","0.0","9412807.154182","-237939.75847","-308.644958","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2008","passing","EPSG","4326","EPSG","2008","1.0","-1.0","0.0","7940045.538185","-199185.330052","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2009","passing","EPSG","4326","EPSG","2009","1.0","-1.0","0.0","8550936.843213","-215181.951772","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2010","passing","EPSG","4326","EPSG","2010","1.0","-1.0","0.0","9207456.599861","-233986.561585","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2011","passing","EPSG","4326","EPSG","2011","1.0","-1.0","0.0","9916156.192369","-256140.621215","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2012","passing","EPSG","4326","EPSG","2012","1.0","-1.0","0.0","1.0684484765137E7","-282289.64286","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2013","passing","EPSG","4326","EPSG","2013","1.0","-1.0","0.0","1.1520897257865E7","-313200.366633","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2014","passing","EPSG","4326","EPSG","2014","1.0","-1.0","0.0","1.2434971573268E7","-349780.156204","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2015","passing","EPSG","4326","EPSG","2015","1.0","-1.0","0.0","1.3437535295624E7","-393098.806777","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2016","passing","EPSG","4326","EPSG","2016","1.0","-1.0","0.0","1.4540802378465E7","-444412.968264","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2017","passing","EPSG","4326","EPSG","2017","1.0","-1.0","0.0","1.2434971573268E7","-349780.156204","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2018","passing","EPSG","4326","EPSG","2018","1.0","-1.0","0.0","1.3437535295624E7","-393098.806777","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2019","passing","EPSG","4326","EPSG","2019","1.0","-1.0","0.0","1.4540802378465E7","-444412.968264","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2020","passing","EPSG","4326","EPSG","2020","1.0","-1.0","0.0","1.5758520219679E7","-505193.395181","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2021","passing","EPSG","4326","EPSG","2021","1.0","-1.0","0.0","1.5134431600389E7","-473518.806319","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2022","passing","EPSG","4326","EPSG","2022","1.0","-1.0","0.0","1.6415052162846E7","-539659.002909","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2023","passing","EPSG","4326","EPSG","2023","1.0","-1.0","0.0","1.7833968210564E7","-617940.206533","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2000","passing","EPSG","4326","EPSG","2000","1.0","-1.0","0.0","9523653.022923","-246619.708725","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; tgt ordinates refreshed for the exact Transverse Mercator (PROJ default since 6.0), verified against PROJ 9.5.1/9.6.0" +"4326 -> 2001","passing","EPSG","4326","EPSG","2001","1.0","-1.0","0.0","9523670.353631","-246795.909237","144.384786","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2002","passing","EPSG","4326","EPSG","2002","1.0","-1.0","0.0","9522110.669727","-247817.007418","-839.356403","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2003","passing","EPSG","4326","EPSG","2003","1.0","-1.0","0.0","9523171.274445","-246840.308613","-186.118484","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2004","passing","EPSG","4326","EPSG","2004","1.0","-1.0","0.0","9522829.950429","-247439.173974","-285.858899","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2005","passing","EPSG","4326","EPSG","2005","1.0","-1.0","0.0","9523226.089466","-247158.797942","-120.103216","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2006","passing","EPSG","4326","EPSG","2006","1.0","-1.0","0.0","9523338.006550","-247290.402338","39.856758","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2007","passing","EPSG","4326","EPSG","2007","1.0","-1.0","0.0","9522896.880815","-247240.702084","-308.644958","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2008","passing","EPSG","4326","EPSG","2008","1.0","-1.0","0.0","7976872.796461","-201841.796129","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2009","passing","EPSG","4326","EPSG","2009","1.0","-1.0","0.0","8612478.854878","-219946.308884","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2010","passing","EPSG","4326","EPSG","2010","1.0","-1.0","0.0","9308885.584168","-242427.761224","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2011","passing","EPSG","4326","EPSG","2011","1.0","-1.0","0.0","10081608.539653","-270989.749407","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2012","passing","EPSG","4326","EPSG","2012","1.0","-1.0","0.0","10952662.154552","-308386.118446","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2013","passing","EPSG","4326","EPSG","2013","1.0","-1.0","0.0","11954931.432527","-359408.090960","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2014","passing","EPSG","4326","EPSG","2014","1.0","-1.0","0.0","13141133.784689","-433308.829298","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2015","passing","EPSG","4326","EPSG","2015","1.0","-1.0","0.0","14605117.911055","-551134.090321","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2016","passing","EPSG","4326","EPSG","2016","1.0","-1.0","0.0","16546197.819721","-778036.560885","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2017","passing","EPSG","4326","EPSG","2017","1.0","-1.0","0.0","13141133.784689","-433308.829298","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2018","passing","EPSG","4326","EPSG","2018","1.0","-1.0","0.0","14605117.911055","-551134.090321","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2019","passing","EPSG","4326","EPSG","2019","1.0","-1.0","0.0","16546197.819721","-778036.560885","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2020","error","EPSG","4326","EPSG","2020","1.0","-1.0","0.0","1.5758520219679E7","-505193.395181","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2021","error","EPSG","4326","EPSG","2021","1.0","-1.0","0.0","1.5134431600389E7","-473518.806319","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2022","error","EPSG","4326","EPSG","2022","1.0","-1.0","0.0","1.6415052162846E7","-539659.002909","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2023","error","EPSG","4326","EPSG","2023","1.0","-1.0","0.0","1.7833968210564E7","-617940.206533","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 2027","passing","EPSG","4326","EPSG","2027","1.0","-1.0","0.0","8929226.258748","-6009717.418205","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2030","passing","EPSG","4326","EPSG","2030","1.0","-1.0","0.0","1.4020924307249E7","-484340.840329","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2032","passing","EPSG","4326","EPSG","2032","1.0","-1.0","0.0","1.4020924307249E7","-484340.840329","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -528,21 +528,21 @@ "4326 -> 2036","passing","EPSG","4326","EPSG","2036","1.0","-1.0","0.0","1.1911475970543E7","4580906.316255","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2037","passing","EPSG","4326","EPSG","2037","1.0","-1.0","0.0","1.1625664379252E7","-331585.409964","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2038","passing","EPSG","4326","EPSG","2038","1.0","-1.0","0.0","9876408.371062","-255706.192524","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2039","passing","EPSG","4326","EPSG","2039","1.0","-1.0","0.0","-3837705.056243","-3019467.848607","47.93362","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2039","passing","EPSG","4326","EPSG","2039","1.0","-1.0","0.0","-3838066.290608","-3019482.662316","47.93362","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2040","passing","EPSG","4326","EPSG","2040","1.0","-1.0","0.0","945348.691521","-111269.473353","20.166646","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2041","passing","EPSG","4326","EPSG","2041","1.0","-1.0","0.0","945348.695969","-111269.267174","19.923039","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2042","passing","EPSG","4326","EPSG","2042","1.0","-1.0","0.0","1618271.392293","-112720.464267","20.166646","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2043","passing","EPSG","4326","EPSG","2043","1.0","-1.0","0.0","1618271.397189","-112720.255408","19.923039","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2046","passing","EPSG","4326","EPSG","2046","1.0","-1.0","0.0","1574077.256672","113982.625201","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2047","passing","EPSG","4326","EPSG","2047","1.0","-1.0","0.0","1804598.968369","115061.382267","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2048","passing","EPSG","4326","EPSG","2048","1.0","-1.0","0.0","2037455.282541","116304.889836","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2049","passing","EPSG","4326","EPSG","2049","1.0","-1.0","0.0","2272985.462607","117721.690018","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2050","passing","EPSG","4326","EPSG","2050","1.0","-1.0","0.0","2511546.910401","119321.769784","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2051","passing","EPSG","4326","EPSG","2051","1.0","-1.0","0.0","2753517.956865","121116.730156","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2052","passing","EPSG","4326","EPSG","2052","1.0","-1.0","0.0","2999300.897571","123119.985084","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2053","passing","EPSG","4326","EPSG","2053","1.0","-1.0","0.0","3249325.29756","125346.993566","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2054","passing","EPSG","4326","EPSG","2054","1.0","-1.0","0.0","3504051.589986","127815.528916","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2055","passing","EPSG","4326","EPSG","2055","1.0","-1.0","0.0","3763974.993044","130545.989419","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2046","passing","EPSG","4326","EPSG","2046","1.0","-1.0","0.0","1574077.513711","113982.629798","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2047","passing","EPSG","4326","EPSG","2047","1.0","-1.0","0.0","1804599.671819","115061.396394","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2048","passing","EPSG","4326","EPSG","2048","1.0","-1.0","0.0","2037457.032266","116304.928834","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2049","passing","EPSG","4326","EPSG","2049","1.0","-1.0","0.0","2272989.488212","117721.788685","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2050","passing","EPSG","4326","EPSG","2050","1.0","-1.0","0.0","2511555.588887","119322.001938","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2051","passing","EPSG","4326","EPSG","2051","1.0","-1.0","0.0","2753535.662089","121117.243832","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2052","passing","EPSG","4326","EPSG","2052","1.0","-1.0","0.0","2999335.346164","123121.063291","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2053","passing","EPSG","4326","EPSG","2053","1.0","-1.0","0.0","3249389.619137","125349.155550","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2054","passing","EPSG","4326","EPSG","2054","1.0","-1.0","0.0","3504167.432198","127819.693986","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2055","passing","EPSG","4326","EPSG","2055","1.0","-1.0","0.0","3764177.079794","130553.735330","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2056","passing","EPSG","4326","EPSG","2056","1.0","-1.0","0.0","1538741.682858","-4798105.454772","72.481336","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2057","passing","EPSG","4326","EPSG","2057","1.0","-1.0","0.0","-6056728.869378","-177831.481835","-117.399079","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2058","passing","EPSG","4326","EPSG","2058","1.0","-1.0","0.0","-4967245.875788","-153899.951867","-134.563311","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -553,24 +553,24 @@ "4326 -> 2063","passing","EPSG","4326","EPSG","2063","1.0","-1.0","0.0","2303642.507004","-115006.885056","-93.77219","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2064","passing","EPSG","4326","EPSG","2064","1.0","-1.0","0.0","1618065.607747","-112238.577068","-93.77219","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2065","passing","EPSG","4326","EPSG","2065","1.0","-1.0","0.0","-3403377.810463121","-6866646.72852765","158.074317","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2066","passing","EPSG","4326","EPSG","2066","1.0","-1.0","0.0","3.4317337166318E7","-7031695.106846","0.0","1.000000","1.000000","1.000000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2066","passing","EPSG","4326","EPSG","2066","1.0","-1.0","0.0","34315462.773783","-7031695.106846","0.0","1.000000","1.000000","1.000000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2067","passing","EPSG","4326","EPSG","2067","1.0","-1.0","0.0","9876054.028905","-256097.732178","-253.989895","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2068","passing","EPSG","4326","EPSG","2068","1.0","-1.0","0.0","-693194.855433","-111505.316514","-136.082986","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2069","passing","EPSG","4326","EPSG","2069","1.0","-1.0","0.0","-918590.322842","-112127.675772","-136.082986","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2070","passing","EPSG","4326","EPSG","2070","1.0","-1.0","0.0","-1145386.515757","-112896.305759","-136.082986","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2071","passing","EPSG","4326","EPSG","2071","1.0","-1.0","0.0","-1373882.933385","-113816.171381","-136.082986","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2072","passing","EPSG","4326","EPSG","2072","1.0","-1.0","0.0","-1604390.064718","-114893.32087","-136.082986","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2073","passing","EPSG","4326","EPSG","2073","1.0","-1.0","0.0","-1837231.591561","-116134.983775","-136.082986","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2074","passing","EPSG","4326","EPSG","2074","1.0","-1.0","0.0","-2072746.762928","-117549.689946","-136.082986","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2075","passing","EPSG","4326","EPSG","2075","1.0","-1.0","0.0","-2311292.965281","-119147.412068","-136.082986","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2076","passing","EPSG","4326","EPSG","2076","1.0","-1.0","0.0","-2553248.513099","-120939.734616","-136.082986","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2071","passing","EPSG","4326","EPSG","2071","1.0","-1.0","0.0","-1373883.191187","-113816.175987","-136.082986","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2072","passing","EPSG","4326","EPSG","2072","1.0","-1.0","0.0","-1604390.769996","-114893.335018","-136.082986","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2073","passing","EPSG","4326","EPSG","2073","1.0","-1.0","0.0","-1837233.345278","-116135.022818","-136.082986","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2074","passing","EPSG","4326","EPSG","2074","1.0","-1.0","0.0","-2072750.796630","-117549.788697","-136.082986","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2075","passing","EPSG","4326","EPSG","2075","1.0","-1.0","0.0","-2311301.659209","-119147.644361","-136.082986","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2076","passing","EPSG","4326","EPSG","2076","1.0","-1.0","0.0","-2553266.246301","-120940.248490","-136.082986","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2077","passing","EPSG","4326","EPSG","2077","1.0","-1.0","0.0","-392926.875336","-111471.861632","-136.082986","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2078","passing","EPSG","4326","EPSG","2078","1.0","-1.0","0.0","-1073410.979008","-113782.027719","-136.082986","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2079","passing","EPSG","4326","EPSG","2079","1.0","-1.0","0.0","-1772068.903202","-117514.520234","-136.082986","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2080","passing","EPSG","4326","EPSG","2080","1.0","-1.0","0.0","-2498150.376353","-122904.244846","-136.082986","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2081","passing","EPSG","4326","EPSG","2081","1.0","-1.0","0.0","1.329001128455E7","9705159.208106","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2082","passing","EPSG","4326","EPSG","2082","1.0","-1.0","0.0","1.3289959825216E7","9704650.198344","-275.452191","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2083","passing","EPSG","4326","EPSG","2083","1.0","-1.0","0.0","1.3289512356208E7","9704918.196947","-268.76073","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2081","passing","EPSG","4326","EPSG","2081","1.0","-1.0","0.0","13630858.104809","9670527.484971","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2082","passing","EPSG","4326","EPSG","2082","1.0","-1.0","0.0","13630788.772323","9669960.363432","-275.452191","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2083","passing","EPSG","4326","EPSG","2083","1.0","-1.0","0.0","13630257.370980","9670268.147864","-268.76073","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2084","passing","EPSG","4326","EPSG","2084","1.0","-1.0","0.0","1.1625805268032E7","9668112.656935","-268.76073","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2085","passing","EPSG","4326","EPSG","2085","1.0","-1.0","0.0","9909411.492491","251948.495886","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2086","passing","EPSG","4326","EPSG","2086","1.0","-1.0","0.0","9435592.696778","-40781.002583","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -578,11 +578,11 @@ "4326 -> 2088","passing","EPSG","4326","EPSG","2088","1.0","-1.0","0.0","-618338.2554","-112681.66399","158.258465","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2089","passing","EPSG","4326","EPSG","2089","1.0","-1.0","0.0","-4967185.609965","-154126.257164","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2090","passing","EPSG","4326","EPSG","2090","1.0","-1.0","0.0","-5950996.913939","-172760.344419","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2091","passing","EPSG","4326","EPSG","2091","1.0","-1.0","0.0","3034175.890113","-154094.190271","-28.44479","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2092","passing","EPSG","4326","EPSG","2092","1.0","-1.0","0.0","3057865.282305","-172228.244903","-28.44479","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2091","passing","EPSG","4326","EPSG","2091","1.0","-1.0","0.0","3030726.850000","-154278.744236","-28.44479","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2092","passing","EPSG","4326","EPSG","2092","1.0","-1.0","0.0","3046529.372717","-172930.351805","-28.44479","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2095","passing","EPSG","4326","EPSG","2095","1.0","-1.0","0.0","2303683.128162","-115043.750679","-81.963333","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2099","passing","EPSG","4326","EPSG","2099","1.0","-1.0","0.0","-5438481.462531","-2874286.197728","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2100","passing","EPSG","4326","EPSG","2100","1.0","-1.0","0.0","-2131111.928901","-120410.795176","202.813313","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2099","passing","EPSG","4326","EPSG","2099","1.0","-1.0","0.0","-5438352.667776","-2874286.197728","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2100","passing","EPSG","4326","EPSG","2100","1.0","-1.0","0.0","-2131124.401692","-120411.143679","202.813313","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2101","passing","EPSG","4326","EPSG","2101","1.0","-1.0","0.0","8166119.317682","-378218.62937","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2102","passing","EPSG","4326","EPSG","2102","1.0","-1.0","0.0","8366119.317682","-178218.62937","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2103","passing","EPSG","4326","EPSG","2103","1.0","-1.0","0.0","8666119.317682","121781.37063","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -593,15 +593,15 @@ "4326 -> 2136","passing","EPSG","4326","EPSG","2136","1.0","-1.0","0.0","1630201.311354","-2056493.175758","134.707259","1.000000","1.000000","1.000000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2137","passing","EPSG","4326","EPSG","2137","1.0","-1.0","0.0","722531.754954","-110919.353488","41.058734","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2138","passing","EPSG","4326","EPSG","2138","1.0","-1.0","0.0","9549969.259541","-761453.533047","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2139","passing","EPSG","4326","EPSG","2139","1.0","-1.0","0.0","7939833.583325","-199185.555886","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2140","passing","EPSG","4326","EPSG","2140","1.0","-1.0","0.0","8550689.97567","-215180.26638","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2141","passing","EPSG","4326","EPSG","2141","1.0","-1.0","0.0","9207169.520513","-233982.521348","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2142","passing","EPSG","4326","EPSG","2142","1.0","-1.0","0.0","9915822.915933","-256133.699684","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2143","passing","EPSG","4326","EPSG","2143","1.0","-1.0","0.0","1.0684098555407E7","-282279.21894","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2144","passing","EPSG","4326","EPSG","2144","1.0","-1.0","0.0","1.1520450559131E7","-313185.711591","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2145","passing","EPSG","4326","EPSG","2145","1.0","-1.0","0.0","1.2434455937819E7","-349760.419421","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2146","passing","EPSG","4326","EPSG","2146","1.0","-1.0","0.0","1.3436941307237E7","-393073.000181","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2147","passing","EPSG","4326","EPSG","2147","1.0","-1.0","0.0","1.4540119571761E7","-444379.949362","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2139","passing","EPSG","4326","EPSG","2139","1.0","-1.0","0.0","7976601.826127","-201836.910943","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2140","passing","EPSG","4326","EPSG","2140","1.0","-1.0","0.0","8612137.856451","-219935.732563","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2141","passing","EPSG","4326","EPSG","2141","1.0","-1.0","0.0","9308448.441537","-242408.173378","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2142","passing","EPSG","4326","EPSG","2142","1.0","-1.0","0.0","10081034.668108","-270955.239323","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2143","passing","EPSG","4326","EPSG","2143","1.0","-1.0","0.0","10951884.807940","-308325.366944","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2144","passing","EPSG","4326","EPSG","2144","1.0","-1.0","0.0","11953832.248001","-359297.148725","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2145","passing","EPSG","4326","EPSG","2145","1.0","-1.0","0.0","13139479.444974","-433089.111077","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2146","passing","EPSG","4326","EPSG","2146","1.0","-1.0","0.0","14602368.100993","-550624.402643","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2147","passing","EPSG","4326","EPSG","2147","1.0","-1.0","0.0","16540704.466247","-776353.629276","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2148","passing","EPSG","4326","EPSG","2148","1.0","-1.0","0.0","8480365.932792","-210356.338473","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2149","passing","EPSG","4326","EPSG","2149","1.0","-1.0","0.0","1.4018825808604E7","-484015.283423","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2151","passing","EPSG","4326","EPSG","2151","1.0","-1.0","0.0","1.3117319676437E7","-1.9577493844715E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -621,19 +621,19 @@ "4326 -> 2165","passing","EPSG","4326","EPSG","2165","1.0","-1.0","0.0","1168735.31384","-111611.878896","19.923039","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2166","passing","EPSG","4326","EPSG","2166","1.0","-1.0","0.0","2606760.774275","-111591.535738","-133.241138","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2167","passing","EPSG","4326","EPSG","2167","1.0","-1.0","0.0","3268134.949234","-112580.350505","-133.241138","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2168","passing","EPSG","4326","EPSG","2168","1.0","-1.0","0.0","3926020.936157","-113904.057349","-133.241138","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2168","passing","EPSG","4326","EPSG","2168","1.0","-1.0","0.0","3926020.679291","-113904.061940","-133.241138","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2169","passing","EPSG","4326","EPSG","2169","1.0","-1.0","0.0","-495972.392377","-5533502.739058","-65.336184","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2170","passing","EPSG","4326","EPSG","2170","1.0","-1.0","0.0","-1073989.157328","-114403.337438","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2170","passing","EPSG","4326","EPSG","2170","1.0","-1.0","0.0","-1073989.413973","-114403.342046","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2171","passing","EPSG","4326","EPSG","2171","1.0","-1.0","0.0","1872060.582589","-262789.471158","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2172","passing","EPSG","4326","EPSG","2172","1.0","-1.0","0.0","1723664.732022","-404816.406352","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2173","passing","EPSG","4326","EPSG","2173","1.0","-1.0","0.0","1243940.294977","-391666.88341","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2174","passing","EPSG","4326","EPSG","2174","1.0","-1.0","0.0","1529481.779458","-512384.826988","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2175","passing","EPSG","4326","EPSG","2175","1.0","-1.0","0.0","-1795450.805133","-4816198.388857","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2176","passing","EPSG","4326","EPSG","2176","1.0","-1.0","0.0","3926043.947276","-113973.848535","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2177","passing","EPSG","4326","EPSG","2177","1.0","-1.0","0.0","4579433.404851","-115653.134446","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2178","passing","EPSG","4326","EPSG","2178","1.0","-1.0","0.0","5227189.557272","-117712.625444","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2179","passing","EPSG","4326","EPSG","2179","1.0","-1.0","0.0","5868120.980937","-120184.841613","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2180","passing","EPSG","4326","EPSG","2180","1.0","-1.0","0.0","-1536029.063845","-5416223.476409","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2175","passing","EPSG","4326","EPSG","2175","1.0","-1.0","0.0","-1795452.522448","-4816198.427025","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2176","passing","EPSG","4326","EPSG","2176","1.0","-1.0","0.0","3926043.690257","-113973.853132","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2177","passing","EPSG","4326","EPSG","2177","1.0","-1.0","0.0","4579432.283551","-115653.158198","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2178","passing","EPSG","4326","EPSG","2178","1.0","-1.0","0.0","5227185.531977","-117712.724103","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2179","passing","EPSG","4326","EPSG","2179","1.0","-1.0","0.0","5868108.506956","-120185.189371","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2180","passing","EPSG","4326","EPSG","2180","1.0","-1.0","0.0","-1536030.812344","-5416223.515380","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2188","passing","EPSG","4326","EPSG","2188","1.0","-1.0","0.0","4528721.336928","-133619.523438","178.26345","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2189","passing","EPSG","4326","EPSG","2189","1.0","-1.0","0.0","3748031.073485","-125257.660282","-150.578901","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2190","passing","EPSG","4326","EPSG","2190","1.0","-1.0","0.0","3748057.634496","-125359.046404","-49.567675","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -643,22 +643,22 @@ "4326 -> 2195","passing","EPSG","4326","EPSG","2195","1.0","-1.0","0.0","1392989.214538","-9884306.27929","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2196","passing","EPSG","4326","EPSG","2196","1.0","-1.0","0.0","-749536.136293","-111805.012088","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2197","passing","EPSG","4326","EPSG","2197","1.0","-1.0","0.0","-731906.055767","-112652.252702","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2198","passing","EPSG","4326","EPSG","2198","1.0","-1.0","0.0","-674077.256672","-113982.625197","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2199","passing","EPSG","4326","EPSG","2199","1.0","-1.0","0.0","2227089.5292653935","-117593.42878043024","-11.731848","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2198","passing","EPSG","4326","EPSG","2198","1.0","-1.0","0.0","-674077.513711","-113982.629795","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2199","passing","EPSG","4326","EPSG","2199","1.0","-1.0","0.0","2227085.505425","-117593.527290","-11.731848","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2200","passing","EPSG","4326","EPSG","2200","1.0","-1.0","0.0","9711473.012657","-2119092.743174","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2201","passing","EPSG","4326","EPSG","2201","1.0","-1.0","0.0","1.4018825808604E7","-484015.283423","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2202","passing","EPSG","4326","EPSG","2202","1.0","-1.0","0.0","1.1625664379252E7","-331585.409964","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2203","passing","EPSG","4326","EPSG","2203","1.0","-1.0","0.0","9876408.371062","-255706.192524","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2204","passing","EPSG","4326","EPSG","2204","1.0","-1.0","0.0","3.5617898204419E7","2247010.09016","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 2205","passing","EPSG","4326","EPSG","2205","1.0","-1.0","0.0","1.0686066581916E7","478256.916124","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2206","passing","EPSG","4326","EPSG","2206","1.0","-1.0","0.0","6500684.070159","-122987.938068","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2207","passing","EPSG","4326","EPSG","2207","1.0","-1.0","0.0","7123900.908145","-126414.132467","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2208","passing","EPSG","4326","EPSG","2208","1.0","-1.0","0.0","7735982.709122","-130405.987826","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2209","passing","EPSG","4326","EPSG","2209","1.0","-1.0","0.0","8335158.209118","-135039.902846","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2210","passing","EPSG","4326","EPSG","2210","1.0","-1.0","0.0","8919434.633071","-140409.475142","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2211","passing","EPSG","4326","EPSG","2211","1.0","-1.0","0.0","9486558.761626","-146629.14266","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2212","passing","EPSG","4326","EPSG","2212","1.0","-1.0","0.0","1.0033973117401E7","-153838.562106","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2213","passing","EPSG","4326","EPSG","2213","1.0","-1.0","0.0","-2874720.191298","-126499.241007","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2206","passing","EPSG","4326","EPSG","2206","1.0","-1.0","0.0","6500649.569634","-122989.016912","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2207","passing","EPSG","4326","EPSG","2207","1.0","-1.0","0.0","7123814.110065","-126417.148449","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2208","passing","EPSG","4326","EPSG","2208","1.0","-1.0","0.0","7735780.395796","-130413.735076","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2209","passing","EPSG","4326","EPSG","2209","1.0","-1.0","0.0","8334715.783319","-135058.449241","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2210","passing","EPSG","4326","EPSG","2210","1.0","-1.0","0.0","8918517.868834","-140451.315740","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2211","passing","EPSG","4326","EPSG","2211","1.0","-1.0","0.0","9484744.347572","-146718.898516","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2212","passing","EPSG","4326","EPSG","2212","1.0","-1.0","0.0","10030520.714324","-154023.011166","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2213","passing","EPSG","4326","EPSG","2213","1.0","-1.0","0.0","-2874806.842582","-126502.254699","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2214","passing","EPSG","4326","EPSG","2214","1.0","-1.0","0.0","-61090.418752","888078.471206","-43.414236","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2215","passing","EPSG","4326","EPSG","2215","1.0","-1.0","0.0","-392853.369767","-111582.249853","-39.287305","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2216","passing","EPSG","4326","EPSG","2216","1.0","-1.0","0.0","7306422.238495","-180205.648928","-420.62481","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -675,14 +675,14 @@ "4326 -> 2232","passing","EPSG","4326","EPSG","2232","1.0","-1.0","0.0","4.1268644084037E7","1.1130932245931E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 2233","passing","EPSG","4326","EPSG","2233","1.0","-1.0","0.0","4.1300893148666E7","1.0805178197923E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 2234","passing","EPSG","4326","EPSG","2234","1.0","-1.0","0.0","3.152765621337E7","-2216629.556017","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2235","passing","EPSG","4326","EPSG","2235","1.0","-1.0","0.0","4.2520912509465E7","-1.5039645049659E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2236","passing","EPSG","4326","EPSG","2236","1.0","-1.0","0.0","4.9309319950207E7","-1.0385647534347E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2237","passing","EPSG","4326","EPSG","2237","1.0","-1.0","0.0","5.0662786479725E7","-1.0453939851278E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2235","passing","EPSG","4326","EPSG","2235","1.0","-1.0","0.0","45701112.989039","-15447210.408475","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2236","error","EPSG","4326","EPSG","2236","1.0","-1.0","0.0","4.9309319950207E7","-1.0385647534347E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2237","error","EPSG","4326","EPSG","2237","1.0","-1.0","0.0","5.0662786479725E7","-1.0453939851278E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 2238","passing","EPSG","4326","EPSG","2238","1.0","-1.0","0.0","3.461492471905E7","1403484.069356","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2239","passing","EPSG","4326","EPSG","2239","1.0","-1.0","0.0","5.0890745624323E7","-1.2525113880594E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2240","passing","EPSG","4326","EPSG","2240","1.0","-1.0","0.0","5.5395061228234E7","-1.2675189538692E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2244","passing","EPSG","4326","EPSG","2244","1.0","-1.0","0.0","5.5710398969693E7","-1.4711272806654E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2245","passing","EPSG","4326","EPSG","2245","1.0","-1.0","0.0","6.0600068996002E7","-1.4838521799231E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2239","error","EPSG","4326","EPSG","2239","1.0","-1.0","0.0","5.0890745624323E7","-1.2525113880594E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2240","error","EPSG","4326","EPSG","2240","1.0","-1.0","0.0","5.5395061228234E7","-1.2675189538692E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2244","error","EPSG","4326","EPSG","2244","1.0","-1.0","0.0","5.5710398969693E7","-1.4711272806654E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2245","error","EPSG","4326","EPSG","2245","1.0","-1.0","0.0","6.0600068996002E7","-1.4838521799231E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 2246","passing","EPSG","4326","EPSG","2246","1.0","-1.0","0.0","3.5059203444504E7","1569081.232317","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 2247","passing","EPSG","4326","EPSG","2247","1.0","-1.0","0.0","3.5342614219278E7","3714598.128125","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 2248","passing","EPSG","4326","EPSG","2248","1.0","-1.0","0.0","3.2708684370125E7","-906152.346323","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" @@ -691,11 +691,11 @@ "4326 -> 2251","passing","EPSG","4326","EPSG","2251","1.0","-1.0","0.0","6.1302193407869E7","3190586.781807","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 2252","passing","EPSG","4326","EPSG","2252","1.0","-1.0","0.0","5.3954791524009E7","2049141.787235","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 2253","passing","EPSG","4326","EPSG","2253","1.0","-1.0","0.0","4.7115923552287E7","1905110.937509","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2254","passing","EPSG","4326","EPSG","2254","1.0","-1.0","0.0","6.1587808741621E7","-1.2917153900627E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2254","error","EPSG","4326","EPSG","2254","1.0","-1.0","0.0","6.1587808741621E7","-1.2917153900627E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 2256","passing","EPSG","4326","EPSG","2256","1.0","-1.0","0.0","4.0436083558584E7","1.432628564251E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2260","passing","EPSG","4326","EPSG","2260","1.0","-1.0","0.0","4.1349698805148E7","-1.5298404466869E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2261","passing","EPSG","4326","EPSG","2261","1.0","-1.0","0.0","4.4002074498844E7","-1.5825594766119E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2262","passing","EPSG","4326","EPSG","2262","1.0","-1.0","0.0","4.6710152386576E7","-1.5935136291522E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2260","passing","EPSG","4326","EPSG","2260","1.0","-1.0","0.0","44077778.712423","-15634150.560445","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2261","passing","EPSG","4326","EPSG","2261","1.0","-1.0","0.0","47881070.213714","-16352306.319676","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2262","passing","EPSG","4326","EPSG","2262","1.0","-1.0","0.0","52240265.516853","-16785879.885769","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2263","passing","EPSG","4326","EPSG","2263","1.0","-1.0","0.0","3.1781553125378E7","-2235399.648173","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 2264","passing","EPSG","4326","EPSG","2264","1.0","-1.0","0.0","3.3505846979267E7","-57915.272695","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 2265","passing","EPSG","4326","EPSG","2265","1.0","-1.0","0.0","3.9529405815696E7","9521710.55353","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" @@ -726,192 +726,192 @@ "4326 -> 2290","passing","EPSG","4326","EPSG","2290","1.0","-1.0","0.0","9613608.616577","-2879551.548838","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2291","passing","EPSG","4326","EPSG","2291","1.0","-1.0","0.0","9313608.616577","-2479551.548838","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2292","passing","EPSG","4326","EPSG","2292","1.0","-1.0","0.0","9313611.418086","-2479552.602219","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2294","passing","EPSG","4326","EPSG","2294","1.0","-1.0","0.0","1.340236674173E7","-233982.448078","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2295","passing","EPSG","4326","EPSG","2295","1.0","-1.0","0.0","1.5111019917515E7","-256133.619645","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2294","passing","EPSG","4326","EPSG","2294","1.0","-1.0","0.0","13503645.640972","-242408.098500","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2295","passing","EPSG","4326","EPSG","2295","1.0","-1.0","0.0","15276231.633875","-270955.156473","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2311","passing","EPSG","4326","EPSG","2311","1.0","-1.0","0.0","-57002.405215","-110955.141177","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2312","passing","EPSG","4326","EPSG","2312","1.0","-1.0","0.0","-1073477.362344","-113926.919088","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2313","passing","EPSG","4326","EPSG","2313","1.0","-1.0","0.0","-1073477.362344","-113926.919088","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2314","passing","EPSG","4326","EPSG","2314","1.0","-1.0","0.0","2.30448994072E7","-4262902.111671","-300.445005","1.000000","1.000000","1.000000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2314","passing","EPSG","4326","EPSG","2314","1.0","-1.0","0.0","23043584.931408","-4262902.111671","-300.445005","1.000000","1.000000","1.000000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2315","passing","EPSG","4326","EPSG","2315","1.0","-1.0","0.0","1.1625977196942E7","9668121.598626","-103.817638","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2316","passing","EPSG","4326","EPSG","2316","1.0","-1.0","0.0","9876600.675978","9744077.299474","-103.817638","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2317","passing","EPSG","4326","EPSG","2317","1.0","-1.0","0.0","8483864.88786","683628.197412","27.338005","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2318","passing","EPSG","4326","EPSG","2318","1.0","-1.0","0.0","-5609010.099426","-1971372.38881","-103.771234","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2319","passing","EPSG","4326","EPSG","2319","1.0","-1.0","0.0","-2499315.929841","-122987.938068","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2320","passing","EPSG","4326","EPSG","2320","1.0","-1.0","0.0","-2876099.091855","-126414.132467","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2321","passing","EPSG","4326","EPSG","2321","1.0","-1.0","0.0","-3264017.290878","-130405.987826","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2322","passing","EPSG","4326","EPSG","2322","1.0","-1.0","0.0","-3664841.790882","-135039.902846","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2323","passing","EPSG","4326","EPSG","2323","1.0","-1.0","0.0","-4080565.366929","-140409.475142","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2324","passing","EPSG","4326","EPSG","2324","1.0","-1.0","0.0","-4513441.238374","-146629.14266","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2325","passing","EPSG","4326","EPSG","2325","1.0","-1.0","0.0","-4966026.882599","-153838.562106","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2327","passing","EPSG","4326","EPSG","2327","1.0","-1.0","0.0","1527311.025253","-343262.277722","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2328","passing","EPSG","4326","EPSG","2328","1.0","-1.0","0.0","454688.1718","-435257.804429","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2329","passing","EPSG","4326","EPSG","2329","1.0","-1.0","0.0","-1067784.309404","-564311.124323","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2338","passing","EPSG","4326","EPSG","2338","1.0","-1.0","0.0","-1.1472688974747E7","-343262.277722","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2339","passing","EPSG","4326","EPSG","2339","1.0","-1.0","0.0","-1.35453118282E7","-435257.804429","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2340","passing","EPSG","4326","EPSG","2340","1.0","-1.0","0.0","-1.6067784309404E7","-564311.124323","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2349","passing","EPSG","4326","EPSG","2349","1.0","-1.0","0.0","1.3527311025253E7","-343262.277722","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2350","passing","EPSG","4326","EPSG","2350","1.0","-1.0","0.0","1.3540282065797E7","-385374.221733","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2351","passing","EPSG","4326","EPSG","2351","1.0","-1.0","0.0","1.34546881718E7","-435257.804429","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2352","passing","EPSG","4326","EPSG","2352","1.0","-1.0","0.0","1.3257047951431E7","-494346.051652","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2353","passing","EPSG","4326","EPSG","2353","1.0","-1.0","0.0","1.2932215690596E7","-564311.124323","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2354","passing","EPSG","4326","EPSG","2354","1.0","-1.0","0.0","1.2463214135521E7","-647097.330633","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2370","passing","EPSG","4326","EPSG","2370","1.0","-1.0","0.0","-1.1472688974747E7","-343262.277722","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2371","passing","EPSG","4326","EPSG","2371","1.0","-1.0","0.0","-1.2459717934203E7","-385374.221733","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2372","passing","EPSG","4326","EPSG","2372","1.0","-1.0","0.0","-1.35453118282E7","-435257.804429","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2373","passing","EPSG","4326","EPSG","2373","1.0","-1.0","0.0","-1.4742952048569E7","-494346.051652","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2374","passing","EPSG","4326","EPSG","2374","1.0","-1.0","0.0","-1.6067784309404E7","-564311.124323","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2375","passing","EPSG","4326","EPSG","2375","1.0","-1.0","0.0","-1.7536785864479E7","-647097.330633","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2391","passing","EPSG","4326","EPSG","2391","1.0","-1.0","0.0","-772948.687017","-117585.752486","-165.167033","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2392","passing","EPSG","4326","EPSG","2392","1.0","-1.0","0.0","-132057.304143","-120055.248542","-165.167033","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2393","passing","EPSG","4326","EPSG","2393","1.0","-1.0","0.0","500710.973975","-122977.711085","-165.167033","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2394","passing","EPSG","4326","EPSG","2394","1.0","-1.0","0.0","1123928.546447","-126403.588479","-165.167033","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2395","passing","EPSG","4326","EPSG","2395","1.0","-1.0","0.0","3034175.890113","-154094.190271","-28.44479","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2396","passing","EPSG","4326","EPSG","2396","1.0","-1.0","0.0","3057865.282305","-172228.244903","-28.44479","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2319","passing","EPSG","4326","EPSG","2319","1.0","-1.0","0.0","-2499350.430366","-122989.016912","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2320","passing","EPSG","4326","EPSG","2320","1.0","-1.0","0.0","-2876185.889935","-126417.148449","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2321","passing","EPSG","4326","EPSG","2321","1.0","-1.0","0.0","-3264219.604204","-130413.735076","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2322","passing","EPSG","4326","EPSG","2322","1.0","-1.0","0.0","-3665284.216681","-135058.449241","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2323","passing","EPSG","4326","EPSG","2323","1.0","-1.0","0.0","-4081482.131166","-140451.315740","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2324","passing","EPSG","4326","EPSG","2324","1.0","-1.0","0.0","-4515255.652428","-146718.898516","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2325","passing","EPSG","4326","EPSG","2325","1.0","-1.0","0.0","-4969479.285676","-154023.011166","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2327","passing","EPSG","4326","EPSG","2327","1.0","-1.0","0.0","877625.345385","-418603.692156","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2328","passing","EPSG","4326","EPSG","2328","1.0","-1.0","0.0","-1365967.754618","-724567.762394","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2329","passing","EPSG","4326","EPSG","2329","1.0","-1.0","0.0","6174706.497229","-13442304.925084","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2338","passing","EPSG","4326","EPSG","2338","1.0","-1.0","0.0","-12122374.654615","-418603.692156","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2339","passing","EPSG","4326","EPSG","2339","1.0","-1.0","0.0","-15365967.754618","-724567.762394","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2340","passing","EPSG","4326","EPSG","2340","1.0","-1.0","0.0","-8825293.502771","-13442304.925084","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2349","passing","EPSG","4326","EPSG","2349","1.0","-1.0","0.0","12877625.345385","-418603.692156","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2350","passing","EPSG","4326","EPSG","2350","1.0","-1.0","0.0","12470328.960766","-526375.856290","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2351","passing","EPSG","4326","EPSG","2351","1.0","-1.0","0.0","11634032.245382","-724567.762394","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2352","error","EPSG","4326","EPSG","2352","1.0","-1.0","0.0","1.3257047951431E7","-494346.051652","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2353","passing","EPSG","4326","EPSG","2353","1.0","-1.0","0.0","20174706.497229","-13442304.925084","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2354","error","EPSG","4326","EPSG","2354","1.0","-1.0","0.0","1.2463214135521E7","-647097.330633","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2370","passing","EPSG","4326","EPSG","2370","1.0","-1.0","0.0","-12122374.654615","-418603.692156","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2371","passing","EPSG","4326","EPSG","2371","1.0","-1.0","0.0","-13529671.039234","-526375.856290","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2372","passing","EPSG","4326","EPSG","2372","1.0","-1.0","0.0","-15365967.754618","-724567.762394","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2373","error","EPSG","4326","EPSG","2373","1.0","-1.0","0.0","-1.4742952048569E7","-494346.051652","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2374","passing","EPSG","4326","EPSG","2374","1.0","-1.0","0.0","-8825293.502771","-13442304.925084","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2375","error","EPSG","4326","EPSG","2375","1.0","-1.0","0.0","-1.7536785864479E7","-647097.330633","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2391","passing","EPSG","4326","EPSG","2391","1.0","-1.0","0.0","-772952.720772","-117585.851258","-165.167033","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2392","passing","EPSG","4326","EPSG","2392","1.0","-1.0","0.0","-132069.800269","-120055.596575","-165.167033","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2393","passing","EPSG","4326","EPSG","2393","1.0","-1.0","0.0","500676.475839","-122978.789758","-165.167033","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2394","passing","EPSG","4326","EPSG","2394","1.0","-1.0","0.0","1123841.753848","-126406.604002","-165.167033","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2395","passing","EPSG","4326","EPSG","2395","1.0","-1.0","0.0","3030726.850000","-154278.744236","-28.44479","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2396","passing","EPSG","4326","EPSG","2396","1.0","-1.0","0.0","3046529.372717","-172930.351805","-28.44479","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2397","passing","EPSG","4326","EPSG","2397","1.0","-1.0","0.0","2606767.5052536973","-111583.82850144235","-133.241138","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2398","passing","EPSG","4326","EPSG","2398","1.0","-1.0","0.0","3268141.7325400496","-112572.56860527751","-133.241138","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2399","passing","EPSG","4326","EPSG","2399","1.0","-1.0","0.0","3926027.7916505085","-113896.1773816197","-133.241138","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2400","passing","EPSG","4326","EPSG","2400","1.0","-1.0","0.0","-166593.824591","-114947.287526","335.681331","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2401","passing","EPSG","4326","EPSG","2401","1.0","-1.0","0.0","1.3527545472395E7","-342995.046176","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2402","passing","EPSG","4326","EPSG","2402","1.0","-1.0","0.0","1.3540542129196E7","-385073.087704","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2403","passing","EPSG","4326","EPSG","2403","1.0","-1.0","0.0","1.3454977904554E7","-434916.510601","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2404","passing","EPSG","4326","EPSG","2404","1.0","-1.0","0.0","1.3257371875881E7","-493957.197245","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2405","passing","EPSG","4326","EPSG","2405","1.0","-1.0","0.0","1.293257883892E7","-563865.977202","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2406","passing","EPSG","4326","EPSG","2406","1.0","-1.0","0.0","1.246362209204E7","-646585.613952","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2422","passing","EPSG","4326","EPSG","2422","1.0","-1.0","0.0","-1.1472454527605E7","-342995.046176","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2423","passing","EPSG","4326","EPSG","2423","1.0","-1.0","0.0","-1.2459457870804E7","-385073.087704","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2424","passing","EPSG","4326","EPSG","2424","1.0","-1.0","0.0","-1.3545022095446E7","-434916.510601","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2425","passing","EPSG","4326","EPSG","2425","1.0","-1.0","0.0","-1.4742628124119E7","-493957.197245","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2426","passing","EPSG","4326","EPSG","2426","1.0","-1.0","0.0","-1.606742116108E7","-563865.977202","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2427","passing","EPSG","4326","EPSG","2427","1.0","-1.0","0.0","-1.753637790796E7","-646585.613952","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2462","passing","EPSG","4326","EPSG","2462","1.0","-1.0","0.0","2227089.5292653935","-117593.42878043024","-11.731848","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2463","passing","EPSG","4326","EPSG","2463","1.0","-1.0","0.0","-1772888.950771","-117636.4223","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2464","passing","EPSG","4326","EPSG","2464","1.0","-1.0","0.0","-2499210.641844","-123030.496386","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2465","passing","EPSG","4326","EPSG","2465","1.0","-1.0","0.0","-3263889.352445","-130450.737301","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2466","passing","EPSG","4326","EPSG","2466","1.0","-1.0","0.0","-4080410.86794","-140457.124938","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2467","passing","EPSG","4326","EPSG","2467","1.0","-1.0","0.0","-4965840.530513","-153890.015637","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2468","passing","EPSG","4326","EPSG","2468","1.0","-1.0","0.0","-5942153.803447","-172000.113601","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2469","passing","EPSG","4326","EPSG","2469","1.0","-1.0","0.0","-7037905.952801","-196632.806922","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2470","passing","EPSG","4326","EPSG","2470","1.0","-1.0","0.0","-8290294.392942","-230482.065892","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2471","passing","EPSG","4326","EPSG","2471","1.0","-1.0","0.0","-9747667.242405","-277431.325425","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2472","passing","EPSG","4326","EPSG","2472","1.0","-1.0","0.0","-1.1472531636535E7","-343000.997494","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2473","passing","EPSG","4326","EPSG","2473","1.0","-1.0","0.0","-1.3545115343377E7","-434924.483647","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2474","passing","EPSG","4326","EPSG","2474","1.0","-1.0","0.0","-1.6067535229283E7","-563876.781733","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2399","passing","EPSG","4326","EPSG","2399","1.0","-1.0","0.0","3926027.534792","-113896.181972","-133.241138","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2400","passing","EPSG","4326","EPSG","2400","1.0","-1.0","0.0","-166594.214399","-114947.294877","335.681331","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2401","passing","EPSG","4326","EPSG","2401","1.0","-1.0","0.0","12877998.661323","-418259.208244","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2402","passing","EPSG","4326","EPSG","2402","1.0","-1.0","0.0","12470826.408097","-525925.858634","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2403","passing","EPSG","4326","EPSG","2403","1.0","-1.0","0.0","11634759.823981","-723899.094671","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2404","error","EPSG","4326","EPSG","2404","1.0","-1.0","0.0","1.3257371875881E7","-493957.197245","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2405","passing","EPSG","4326","EPSG","2405","1.0","-1.0","0.0","20096226.905901","-13446275.705824","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2406","error","EPSG","4326","EPSG","2406","1.0","-1.0","0.0","1.246362209204E7","-646585.613952","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2422","passing","EPSG","4326","EPSG","2422","1.0","-1.0","0.0","-12122001.338677","-418259.208244","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2423","passing","EPSG","4326","EPSG","2423","1.0","-1.0","0.0","-13529173.591903","-525925.858634","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2424","passing","EPSG","4326","EPSG","2424","1.0","-1.0","0.0","-15365240.176019","-723899.094671","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2425","error","EPSG","4326","EPSG","2425","1.0","-1.0","0.0","-1.4742628124119E7","-493957.197245","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2426","passing","EPSG","4326","EPSG","2426","1.0","-1.0","0.0","-8903773.094099","-13446275.705824","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2427","error","EPSG","4326","EPSG","2427","1.0","-1.0","0.0","-1.753637790796E7","-646585.613952","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2462","passing","EPSG","4326","EPSG","2462","1.0","-1.0","0.0","2227085.505425","-117593.527290","-11.731848","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2463","passing","EPSG","4326","EPSG","2463","1.0","-1.0","0.0","-1772892.974308","-117636.520838","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2464","passing","EPSG","4326","EPSG","2464","1.0","-1.0","0.0","-2499245.076581","-123031.573310","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2465","passing","EPSG","4326","EPSG","2465","1.0","-1.0","0.0","-3264091.372755","-130458.474623","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2466","passing","EPSG","4326","EPSG","2466","1.0","-1.0","0.0","-4081326.582339","-140498.925711","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2467","passing","EPSG","4326","EPSG","2467","1.0","-1.0","0.0","-4969289.687269","-154074.329852","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2468","passing","EPSG","4326","EPSG","2468","1.0","-1.0","0.0","-5953490.088607","-172701.307523","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2469","passing","EPSG","4326","EPSG","2469","1.0","-1.0","0.0","-7071601.390465","-199032.459545","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2470","passing","EPSG","4326","EPSG","2470","1.0","-1.0","0.0","-8383549.022382","-238139.999242","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2471","passing","EPSG","4326","EPSG","2471","1.0","-1.0","0.0","-9994787.974786","-301115.494208","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2472","passing","EPSG","4326","EPSG","2472","1.0","-1.0","0.0","-12122104.414257","-418269.477200","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2473","passing","EPSG","4326","EPSG","2473","1.0","-1.0","0.0","-15365416.289671","-723928.382214","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2474","passing","EPSG","4326","EPSG","2474","1.0","-1.0","0.0","-8893633.758840","-13449395.681243","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2492","passing","EPSG","4326","EPSG","2492","1.0","-1.0","0.0","-393244.435457","-111577.648952","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2493","passing","EPSG","4326","EPSG","2493","1.0","-1.0","0.0","-1073984.408421","-113889.892938","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2494","passing","EPSG","4326","EPSG","2494","1.0","-1.0","0.0","-1772900.695582","-117625.665195","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2495","passing","EPSG","4326","EPSG","2495","1.0","-1.0","0.0","-2499222.948614","-123019.272688","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2496","passing","EPSG","4326","EPSG","2496","1.0","-1.0","0.0","-3263902.426215","-130438.868024","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2497","passing","EPSG","4326","EPSG","2497","1.0","-1.0","0.0","-4080424.966761","-140444.383403","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2498","passing","EPSG","4326","EPSG","2498","1.0","-1.0","0.0","-4965855.986445","-153876.103477","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2499","passing","EPSG","4326","EPSG","2499","1.0","-1.0","0.0","-5942171.049419","-171984.62562","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2500","passing","EPSG","4326","EPSG","2500","1.0","-1.0","0.0","-7037925.556417","-196615.180042","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2501","passing","EPSG","4326","EPSG","2501","1.0","-1.0","0.0","-8290317.098377","-230461.506074","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2502","passing","EPSG","4326","EPSG","2502","1.0","-1.0","0.0","-9747694.021541","-277406.704894","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2503","passing","EPSG","4326","EPSG","2503","1.0","-1.0","0.0","-1.1472563750541E7","-342970.712816","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2504","passing","EPSG","4326","EPSG","2504","1.0","-1.0","0.0","-1.3545154415967E7","-434886.26325","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2505","passing","EPSG","4326","EPSG","2505","1.0","-1.0","0.0","-1.6067583332906E7","-563827.429285","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2523","passing","EPSG","4326","EPSG","2523","1.0","-1.0","0.0","5227099.304418","-117625.665195","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2524","passing","EPSG","4326","EPSG","2524","1.0","-1.0","0.0","5867999.502325","-120095.919503","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2525","passing","EPSG","4326","EPSG","2525","1.0","-1.0","0.0","6500777.051386","-123019.272688","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2526","passing","EPSG","4326","EPSG","2526","1.0","-1.0","0.0","7124004.443938","-126446.185441","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2527","passing","EPSG","4326","EPSG","2527","1.0","-1.0","0.0","7736097.573785","-130438.868024","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2528","passing","EPSG","4326","EPSG","2528","1.0","-1.0","0.0","8335285.311042","-135073.730267","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2529","passing","EPSG","4326","EPSG","2529","1.0","-1.0","0.0","8919575.033239","-140444.383403","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2530","passing","EPSG","4326","EPSG","2530","1.0","-1.0","0.0","9486713.694373","-146665.282069","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2531","passing","EPSG","4326","EPSG","2531","1.0","-1.0","0.0","1.0034144013555E7","-153876.103477","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2532","passing","EPSG","4326","EPSG","2532","1.0","-1.0","0.0","1.0558955364937E7","-162246.969438","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2533","passing","EPSG","4326","EPSG","2533","1.0","-1.0","0.0","1.1057828950581E7","-171984.62562","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2534","passing","EPSG","4326","EPSG","2534","1.0","-1.0","0.0","1.1526976837935E7","-183339.701115","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2535","passing","EPSG","4326","EPSG","2535","1.0","-1.0","0.0","1.1962074443583E7","-196615.180042","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2536","passing","EPSG","4326","EPSG","2536","1.0","-1.0","0.0","1.2358186044954E7","-212176.225657","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2537","passing","EPSG","4326","EPSG","2537","1.0","-1.0","0.0","1.2709682901623E7","-230461.506074","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2538","passing","EPSG","4326","EPSG","2538","1.0","-1.0","0.0","1.3010153567919E7","-251996.179415","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2539","passing","EPSG","4326","EPSG","2539","1.0","-1.0","0.0","1.3252305978459E7","-277406.704894","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2540","passing","EPSG","4326","EPSG","2540","1.0","-1.0","0.0","1.3427860888315E7","-307437.655024","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2541","passing","EPSG","4326","EPSG","2541","1.0","-1.0","0.0","1.3527436249459E7","-342970.712816","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2542","passing","EPSG","4326","EPSG","2542","1.0","-1.0","0.0","1.3540422105165E7","-385046.046532","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2543","passing","EPSG","4326","EPSG","2543","1.0","-1.0","0.0","1.3454845584033E7","-434886.26325","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2544","passing","EPSG","4326","EPSG","2544","1.0","-1.0","0.0","1.3257225575297E7","-493923.151171","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2545","passing","EPSG","4326","EPSG","2545","1.0","-1.0","0.0","1.2932416667094E7","-563827.429285","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2546","passing","EPSG","4326","EPSG","2546","1.0","-1.0","0.0","1.2463441929365E7","-646541.731725","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2493","passing","EPSG","4326","EPSG","2493","1.0","-1.0","0.0","-1073984.665294","-113889.897528","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2494","passing","EPSG","4326","EPSG","2494","1.0","-1.0","0.0","-1772904.719281","-117625.763728","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2495","passing","EPSG","4326","EPSG","2495","1.0","-1.0","0.0","-2499257.384477","-123020.349552","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2496","passing","EPSG","4326","EPSG","2496","1.0","-1.0","0.0","-3264104.452125","-130446.604869","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2497","passing","EPSG","4326","EPSG","2497","1.0","-1.0","0.0","-4081340.703335","-140486.181429","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2498","passing","EPSG","4326","EPSG","2498","1.0","-1.0","0.0","-4969305.217962","-154060.405066","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2499","passing","EPSG","4326","EPSG","2499","1.0","-1.0","0.0","-5953507.559286","-172685.770091","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2500","passing","EPSG","4326","EPSG","2500","1.0","-1.0","0.0","-7071621.617834","-199014.660104","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2501","passing","EPSG","4326","EPSG","2501","1.0","-1.0","0.0","-8383573.378286","-238118.882807","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2502","passing","EPSG","4326","EPSG","2502","1.0","-1.0","0.0","-9994819.069755","-301089.152495","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2503","passing","EPSG","4326","EPSG","2503","1.0","-1.0","0.0","-12122148.359192","-418233.840425","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2504","passing","EPSG","4326","EPSG","2504","1.0","-1.0","0.0","-15365495.887991","-723872.049499","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2505","passing","EPSG","4326","EPSG","2505","1.0","-1.0","0.0","-8890896.823237","-13454506.333789","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2523","passing","EPSG","4326","EPSG","2523","1.0","-1.0","0.0","5227095.280719","-117625.763728","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2524","passing","EPSG","4326","EPSG","2524","1.0","-1.0","0.0","5867987.032569","-120096.266838","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2525","passing","EPSG","4326","EPSG","2525","1.0","-1.0","0.0","6500742.615523","-123020.349552","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2526","passing","EPSG","4326","EPSG","2526","1.0","-1.0","0.0","7123917.786760","-126449.196707","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2527","passing","EPSG","4326","EPSG","2527","1.0","-1.0","0.0","7735895.547875","-130446.604869","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2528","passing","EPSG","4326","EPSG","2528","1.0","-1.0","0.0","8334843.440849","-135092.255078","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2529","passing","EPSG","4326","EPSG","2529","1.0","-1.0","0.0","8918659.296665","-140486.181429","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2530","passing","EPSG","4326","EPSG","2530","1.0","-1.0","0.0","9484901.113057","-146754.957354","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2531","passing","EPSG","4326","EPSG","2531","1.0","-1.0","0.0","10030694.782038","-154060.405066","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2532","passing","EPSG","4326","EPSG","2532","1.0","-1.0","0.0","10552610.331763","-162612.103155","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2533","passing","EPSG","4326","EPSG","2533","1.0","-1.0","0.0","11046492.440714","-172685.770091","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2534","passing","EPSG","4326","EPSG","2534","1.0","-1.0","0.0","11507222.854945","-184651.024975","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2535","passing","EPSG","4326","EPSG","2535","1.0","-1.0","0.0","11928378.382166","-199014.660104","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2536","passing","EPSG","4326","EPSG","2536","1.0","-1.0","0.0","12301723.135500","-216490.677016","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2537","passing","EPSG","4326","EPSG","2537","1.0","-1.0","0.0","12616426.621714","-238118.882807","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2538","passing","EPSG","4326","EPSG","2538","1.0","-1.0","0.0","12857805.114897","-265477.181583","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2539","passing","EPSG","4326","EPSG","2539","1.0","-1.0","0.0","13005180.930245","-301089.152495","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2540","passing","EPSG","4326","EPSG","2540","1.0","-1.0","0.0","13027973.999897","-349281.719121","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2541","passing","EPSG","4326","EPSG","2541","1.0","-1.0","0.0","12877851.640808","-418233.840425","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2542","passing","EPSG","4326","EPSG","2542","1.0","-1.0","0.0","12470641.069504","-525897.864005","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2543","passing","EPSG","4326","EPSG","2543","1.0","-1.0","0.0","11634504.112009","-723872.049499","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2544","error","EPSG","4326","EPSG","2544","1.0","-1.0","0.0","1.3257225575297E7","-493923.151171","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2545","passing","EPSG","4326","EPSG","2545","1.0","-1.0","0.0","20109103.176763","-13454506.333789","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2546","error","EPSG","4326","EPSG","2546","1.0","-1.0","0.0","1.2463441929365E7","-646541.731725","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 2550","passing","EPSG","4326","EPSG","2550","1.0","-1.0","0.0","-8873611.031099","-9738015.6953","1133.347851","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2582","passing","EPSG","4326","EPSG","2582","1.0","-1.0","0.0","-1772900.695582","-117625.665195","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2583","passing","EPSG","4326","EPSG","2583","1.0","-1.0","0.0","-2132000.497675","-120095.919503","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2584","passing","EPSG","4326","EPSG","2584","1.0","-1.0","0.0","-2499222.948614","-123019.272688","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2585","passing","EPSG","4326","EPSG","2585","1.0","-1.0","0.0","-2875995.556062","-126446.185441","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2586","passing","EPSG","4326","EPSG","2586","1.0","-1.0","0.0","-3263902.426215","-130438.868024","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2587","passing","EPSG","4326","EPSG","2587","1.0","-1.0","0.0","-3664714.688958","-135073.730267","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2588","passing","EPSG","4326","EPSG","2588","1.0","-1.0","0.0","-4080424.966761","-140444.383403","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2589","passing","EPSG","4326","EPSG","2589","1.0","-1.0","0.0","-4513286.305627","-146665.282069","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2590","passing","EPSG","4326","EPSG","2590","1.0","-1.0","0.0","-4965855.986445","-153876.103477","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2591","passing","EPSG","4326","EPSG","2591","1.0","-1.0","0.0","-5441044.635063","-162246.969438","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2592","passing","EPSG","4326","EPSG","2592","1.0","-1.0","0.0","-5942171.049419","-171984.62562","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2593","passing","EPSG","4326","EPSG","2593","1.0","-1.0","0.0","-6473023.162065","-183339.701115","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2594","passing","EPSG","4326","EPSG","2594","1.0","-1.0","0.0","-7037925.556417","-196615.180042","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2595","passing","EPSG","4326","EPSG","2595","1.0","-1.0","0.0","-7641813.955046","-212176.225657","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2596","passing","EPSG","4326","EPSG","2596","1.0","-1.0","0.0","-8290317.098377","-230461.506074","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2597","passing","EPSG","4326","EPSG","2597","1.0","-1.0","0.0","-8989846.432081","-251996.179415","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2598","passing","EPSG","4326","EPSG","2598","1.0","-1.0","0.0","-9747694.021541","-277406.704894","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2599","passing","EPSG","4326","EPSG","2599","1.0","-1.0","0.0","-1.0572139111685E7","-307437.655024","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2600","passing","EPSG","4326","EPSG","2600","1.0","-1.0","0.0","-2131555.273016","-120170.057739","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2601","passing","EPSG","4326","EPSG","2601","1.0","-1.0","0.0","-1.1472563750541E7","-342970.712816","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2602","passing","EPSG","4326","EPSG","2602","1.0","-1.0","0.0","-1.2459577894835E7","-385046.046532","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2603","passing","EPSG","4326","EPSG","2603","1.0","-1.0","0.0","-1.3545154415967E7","-434886.26325","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2604","passing","EPSG","4326","EPSG","2604","1.0","-1.0","0.0","-1.4742774424703E7","-493923.151171","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2605","passing","EPSG","4326","EPSG","2605","1.0","-1.0","0.0","-1.6067583332906E7","-563827.429285","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2606","passing","EPSG","4326","EPSG","2606","1.0","-1.0","0.0","-1.7536558070635E7","-646541.731725","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2641","passing","EPSG","4326","EPSG","2641","1.0","-1.0","0.0","5227111.049229","-117636.4223","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2642","passing","EPSG","4326","EPSG","2642","1.0","-1.0","0.0","5868011.505116","-120106.889801","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2643","passing","EPSG","4326","EPSG","2643","1.0","-1.0","0.0","6500789.358156","-123030.496386","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2644","passing","EPSG","4326","EPSG","2644","1.0","-1.0","0.0","7124017.105696","-126457.707032","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2645","passing","EPSG","4326","EPSG","2645","1.0","-1.0","0.0","7736110.647555","-130450.737301","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2646","passing","EPSG","4326","EPSG","2646","1.0","-1.0","0.0","8335298.861011","-135086.003531","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2647","passing","EPSG","4326","EPSG","2647","1.0","-1.0","0.0","8919589.13206","-140457.124938","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2648","passing","EPSG","4326","EPSG","2648","1.0","-1.0","0.0","9486728.424643","-146678.565928","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2649","passing","EPSG","4326","EPSG","2649","1.0","-1.0","0.0","1.0034159469487E7","-153890.015637","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2650","passing","EPSG","4326","EPSG","2650","1.0","-1.0","0.0","1.0558971654237E7","-162261.610412","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2651","passing","EPSG","4326","EPSG","2651","1.0","-1.0","0.0","1.1057846196553E7","-172000.113601","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2652","passing","EPSG","4326","EPSG","2652","1.0","-1.0","0.0","1.1526995181826E7","-183356.175745","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2653","passing","EPSG","4326","EPSG","2653","1.0","-1.0","0.0","1.1962094047199E7","-196632.806922","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2654","passing","EPSG","4326","EPSG","2654","1.0","-1.0","0.0","1.235820709354E7","-212195.20171","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2655","passing","EPSG","4326","EPSG","2655","1.0","-1.0","0.0","1.2709705607058E7","-230482.065892","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2656","passing","EPSG","4326","EPSG","2656","1.0","-1.0","0.0","1.3010178172213E7","-252018.602747","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2657","passing","EPSG","4326","EPSG","2657","1.0","-1.0","0.0","1.3252332757595E7","-277431.325425","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2658","passing","EPSG","4326","EPSG","2658","1.0","-1.0","0.0","1.3427890156444E7","-307464.870632","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2659","passing","EPSG","4326","EPSG","2659","1.0","-1.0","0.0","1.3527468363465E7","-343000.997494","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2660","passing","EPSG","4326","EPSG","2660","1.0","-1.0","0.0","1.3540457469634E7","-385079.964195","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2661","passing","EPSG","4326","EPSG","2661","1.0","-1.0","0.0","1.3454884656623E7","-434924.483647","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2662","passing","EPSG","4326","EPSG","2662","1.0","-1.0","0.0","1.3257268872553E7","-493966.46816","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2663","passing","EPSG","4326","EPSG","2663","1.0","-1.0","0.0","1.2932464770717E7","-563876.781733","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2664","passing","EPSG","4326","EPSG","2664","1.0","-1.0","0.0","1.246349549295E7","-646598.227329","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2699","passing","EPSG","4326","EPSG","2699","1.0","-1.0","0.0","-1772888.950771","-117636.4223","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2700","passing","EPSG","4326","EPSG","2700","1.0","-1.0","0.0","-2131988.494884","-120106.889801","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2701","passing","EPSG","4326","EPSG","2701","1.0","-1.0","0.0","-2499210.641844","-123030.496386","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2702","passing","EPSG","4326","EPSG","2702","1.0","-1.0","0.0","-2875982.894304","-126457.707032","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2703","passing","EPSG","4326","EPSG","2703","1.0","-1.0","0.0","-3263889.352445","-130450.737301","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2704","passing","EPSG","4326","EPSG","2704","1.0","-1.0","0.0","-3664701.138989","-135086.003531","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2705","passing","EPSG","4326","EPSG","2705","1.0","-1.0","0.0","-4080410.86794","-140457.124938","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2706","passing","EPSG","4326","EPSG","2706","1.0","-1.0","0.0","-4513271.575357","-146678.565928","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2707","passing","EPSG","4326","EPSG","2707","1.0","-1.0","0.0","-4965840.530513","-153890.015637","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2708","passing","EPSG","4326","EPSG","2708","1.0","-1.0","0.0","-5441028.345763","-162261.610412","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2709","passing","EPSG","4326","EPSG","2709","1.0","-1.0","0.0","-5942153.803447","-172000.113601","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2710","passing","EPSG","4326","EPSG","2710","1.0","-1.0","0.0","-6473004.818174","-183356.175745","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2711","passing","EPSG","4326","EPSG","2711","1.0","-1.0","0.0","-7037905.952801","-196632.806922","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2712","passing","EPSG","4326","EPSG","2712","1.0","-1.0","0.0","-7641792.90646","-212195.20171","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2713","passing","EPSG","4326","EPSG","2713","1.0","-1.0","0.0","-8290294.392942","-230482.065892","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2714","passing","EPSG","4326","EPSG","2714","1.0","-1.0","0.0","-8989821.827787","-252018.602747","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2715","passing","EPSG","4326","EPSG","2715","1.0","-1.0","0.0","-9747667.242405","-277431.325425","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2716","passing","EPSG","4326","EPSG","2716","1.0","-1.0","0.0","-1.0572109843556E7","-307464.870632","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2717","passing","EPSG","4326","EPSG","2717","1.0","-1.0","0.0","-1.1472531636535E7","-343000.997494","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2718","passing","EPSG","4326","EPSG","2718","1.0","-1.0","0.0","-1.2459542530366E7","-385079.964195","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2719","passing","EPSG","4326","EPSG","2719","1.0","-1.0","0.0","-1.3545115343377E7","-434924.483647","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2720","passing","EPSG","4326","EPSG","2720","1.0","-1.0","0.0","-1.4742731127447E7","-493966.46816","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2721","passing","EPSG","4326","EPSG","2721","1.0","-1.0","0.0","-1.6067535229283E7","-563876.781733","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2722","passing","EPSG","4326","EPSG","2722","1.0","-1.0","0.0","-1.753650450705E7","-646598.227329","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2582","passing","EPSG","4326","EPSG","2582","1.0","-1.0","0.0","-1772904.719281","-117625.763728","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2583","passing","EPSG","4326","EPSG","2583","1.0","-1.0","0.0","-2132012.967431","-120096.266838","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2584","passing","EPSG","4326","EPSG","2584","1.0","-1.0","0.0","-2499257.384477","-123020.349552","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2585","passing","EPSG","4326","EPSG","2585","1.0","-1.0","0.0","-2876082.213240","-126449.196707","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2586","passing","EPSG","4326","EPSG","2586","1.0","-1.0","0.0","-3264104.452125","-130446.604869","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2587","passing","EPSG","4326","EPSG","2587","1.0","-1.0","0.0","-3665156.559151","-135092.255078","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2588","passing","EPSG","4326","EPSG","2588","1.0","-1.0","0.0","-4081340.703335","-140486.181429","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2589","passing","EPSG","4326","EPSG","2589","1.0","-1.0","0.0","-4515098.886943","-146754.957354","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2590","passing","EPSG","4326","EPSG","2590","1.0","-1.0","0.0","-4969305.217962","-154060.405066","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2591","passing","EPSG","4326","EPSG","2591","1.0","-1.0","0.0","-5447389.668237","-162612.103155","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2592","passing","EPSG","4326","EPSG","2592","1.0","-1.0","0.0","-5953507.559286","-172685.770091","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2593","passing","EPSG","4326","EPSG","2593","1.0","-1.0","0.0","-6492777.145055","-184651.024975","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2594","passing","EPSG","4326","EPSG","2594","1.0","-1.0","0.0","-7071621.617834","-199014.660104","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2595","passing","EPSG","4326","EPSG","2595","1.0","-1.0","0.0","-7698276.864500","-216490.677016","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2596","passing","EPSG","4326","EPSG","2596","1.0","-1.0","0.0","-8383573.378286","-238118.882807","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2597","passing","EPSG","4326","EPSG","2597","1.0","-1.0","0.0","-9142194.885103","-265477.181583","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2598","passing","EPSG","4326","EPSG","2598","1.0","-1.0","0.0","-9994819.069755","-301089.152495","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2599","passing","EPSG","4326","EPSG","2599","1.0","-1.0","0.0","-10972026.000103","-349281.719121","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2600","passing","EPSG","4326","EPSG","2600","1.0","-1.0","0.0","-2131567.745462","-120170.405454","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2601","passing","EPSG","4326","EPSG","2601","1.0","-1.0","0.0","-12122148.359192","-418233.840425","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2602","passing","EPSG","4326","EPSG","2602","1.0","-1.0","0.0","-13529358.930496","-525897.864005","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2603","passing","EPSG","4326","EPSG","2603","1.0","-1.0","0.0","-15365495.887991","-723872.049499","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2604","error","EPSG","4326","EPSG","2604","1.0","-1.0","0.0","-1.4742774424703E7","-493923.151171","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2605","passing","EPSG","4326","EPSG","2605","1.0","-1.0","0.0","-8890896.823237","-13454506.333789","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2606","error","EPSG","4326","EPSG","2606","1.0","-1.0","0.0","-1.7536558070635E7","-646541.731725","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2641","passing","EPSG","4326","EPSG","2641","1.0","-1.0","0.0","5227107.025692","-117636.520838","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2642","passing","EPSG","4326","EPSG","2642","1.0","-1.0","0.0","5867999.035810","-120107.237154","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2643","passing","EPSG","4326","EPSG","2643","1.0","-1.0","0.0","6500754.923419","-123031.573310","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2644","passing","EPSG","4326","EPSG","2644","1.0","-1.0","0.0","7123930.451116","-126460.718477","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2645","passing","EPSG","4326","EPSG","2645","1.0","-1.0","0.0","7735908.627245","-130458.474623","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2646","passing","EPSG","4326","EPSG","2646","1.0","-1.0","0.0","8334857.002228","-135104.529525","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2647","passing","EPSG","4326","EPSG","2647","1.0","-1.0","0.0","8918673.417661","-140498.925711","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2648","passing","EPSG","4326","EPSG","2648","1.0","-1.0","0.0","9484915.884736","-146768.247241","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2649","passing","EPSG","4326","EPSG","2649","1.0","-1.0","0.0","10030710.312731","-154074.329852","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2650","passing","EPSG","4326","EPSG","2650","1.0","-1.0","0.0","10552626.752238","-162626.769544","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2651","passing","EPSG","4326","EPSG","2651","1.0","-1.0","0.0","11046509.911393","-172701.307523","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2652","passing","EPSG","4326","EPSG","2652","1.0","-1.0","0.0","11507241.576211","-184667.593098","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2653","passing","EPSG","4326","EPSG","2653","1.0","-1.0","0.0","11928398.609535","-199032.459545","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2654","passing","EPSG","4326","EPSG","2654","1.0","-1.0","0.0","12301745.202749","-216509.965368","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2655","passing","EPSG","4326","EPSG","2655","1.0","-1.0","0.0","12616450.977618","-238139.999242","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2656","passing","EPSG","4326","EPSG","2656","1.0","-1.0","0.0","12857832.384671","-265500.586418","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2657","passing","EPSG","4326","EPSG","2657","1.0","-1.0","0.0","13005212.025214","-301115.494208","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2658","passing","EPSG","4326","EPSG","2658","1.0","-1.0","0.0","13028010.330816","-349311.955595","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2659","passing","EPSG","4326","EPSG","2659","1.0","-1.0","0.0","12877895.585743","-418269.477200","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2660","passing","EPSG","4326","EPSG","2660","1.0","-1.0","0.0","12470697.206405","-525941.470414","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2661","passing","EPSG","4326","EPSG","2661","1.0","-1.0","0.0","11634583.710329","-723928.382214","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2662","error","EPSG","4326","EPSG","2662","1.0","-1.0","0.0","1.3257268872553E7","-493966.46816","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2663","passing","EPSG","4326","EPSG","2663","1.0","-1.0","0.0","20106366.241160","-13449395.681243","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2664","error","EPSG","4326","EPSG","2664","1.0","-1.0","0.0","1.246349549295E7","-646598.227329","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2699","passing","EPSG","4326","EPSG","2699","1.0","-1.0","0.0","-1772892.974308","-117636.520838","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2700","passing","EPSG","4326","EPSG","2700","1.0","-1.0","0.0","-2132000.964190","-120107.237154","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2701","passing","EPSG","4326","EPSG","2701","1.0","-1.0","0.0","-2499245.076581","-123031.573310","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2702","passing","EPSG","4326","EPSG","2702","1.0","-1.0","0.0","-2876069.548884","-126460.718477","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2703","passing","EPSG","4326","EPSG","2703","1.0","-1.0","0.0","-3264091.372755","-130458.474623","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2704","passing","EPSG","4326","EPSG","2704","1.0","-1.0","0.0","-3665142.997772","-135104.529525","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2705","passing","EPSG","4326","EPSG","2705","1.0","-1.0","0.0","-4081326.582339","-140498.925711","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2706","passing","EPSG","4326","EPSG","2706","1.0","-1.0","0.0","-4515084.115264","-146768.247241","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2707","passing","EPSG","4326","EPSG","2707","1.0","-1.0","0.0","-4969289.687269","-154074.329852","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2708","passing","EPSG","4326","EPSG","2708","1.0","-1.0","0.0","-5447373.247762","-162626.769544","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2709","passing","EPSG","4326","EPSG","2709","1.0","-1.0","0.0","-5953490.088607","-172701.307523","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2710","passing","EPSG","4326","EPSG","2710","1.0","-1.0","0.0","-6492758.423789","-184667.593098","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2711","passing","EPSG","4326","EPSG","2711","1.0","-1.0","0.0","-7071601.390465","-199032.459545","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2712","passing","EPSG","4326","EPSG","2712","1.0","-1.0","0.0","-7698254.797251","-216509.965368","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2713","passing","EPSG","4326","EPSG","2713","1.0","-1.0","0.0","-8383549.022382","-238139.999242","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2714","passing","EPSG","4326","EPSG","2714","1.0","-1.0","0.0","-9142167.615329","-265500.586418","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2715","passing","EPSG","4326","EPSG","2715","1.0","-1.0","0.0","-9994787.974786","-301115.494208","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2716","passing","EPSG","4326","EPSG","2716","1.0","-1.0","0.0","-10971989.669184","-349311.955595","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2717","passing","EPSG","4326","EPSG","2717","1.0","-1.0","0.0","-12122104.414257","-418269.477200","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2718","passing","EPSG","4326","EPSG","2718","1.0","-1.0","0.0","-13529302.793595","-525941.470414","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2719","passing","EPSG","4326","EPSG","2719","1.0","-1.0","0.0","-15365416.289671","-723928.382214","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2720","error","EPSG","4326","EPSG","2720","1.0","-1.0","0.0","-1.4742731127447E7","-493966.46816","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2721","passing","EPSG","4326","EPSG","2721","1.0","-1.0","0.0","-8893633.758840","-13449395.681243","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2722","error","EPSG","4326","EPSG","2722","1.0","-1.0","0.0","-1.753650450705E7","-646598.227329","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 2736","passing","EPSG","4326","EPSG","2736","1.0","-1.0","0.0","-3262616.551242","9869767.115019","8.418301","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2737","passing","EPSG","4326","EPSG","2737","1.0","-1.0","0.0","-4079538.649943","9859742.728708","8.418301","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2759","passing","EPSG","4326","EPSG","2759","1.0","-1.0","0.0","1.7159919726823E7","-3961313.962369","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2760","passing","EPSG","4326","EPSG","2760","1.0","-1.0","0.0","1.8379967073642E7","-3952167.354801","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2759","error","EPSG","4326","EPSG","2759","1.0","-1.0","0.0","1.7159919726823E7","-3961313.962369","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2760","error","EPSG","4326","EPSG","2760","1.0","-1.0","0.0","1.8379967073642E7","-3952167.354801","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 2764","passing","EPSG","4326","EPSG","2764","1.0","-1.0","0.0","1.1131856190038E7","1298569.855381","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2765","passing","EPSG","4326","EPSG","2765","1.0","-1.0","0.0","1.1100796271263E7","1659604.579459","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2766","passing","EPSG","4326","EPSG","2766","1.0","-1.0","0.0","1.4254884235227E7","5989905.116896","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -924,15 +924,15 @@ "4326 -> 2773","passing","EPSG","4326","EPSG","2773","1.0","-1.0","0.0","1.2578707874327E7","3392714.933988","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2774","passing","EPSG","4326","EPSG","2774","1.0","-1.0","0.0","1.2588537408885E7","3293424.901576","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2775","passing","EPSG","4326","EPSG","2775","1.0","-1.0","0.0","9609648.833132","-675630.039935","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2776","passing","EPSG","4326","EPSG","2776","1.0","-1.0","0.0","1.2960400053583E7","-4584092.979322","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2777","passing","EPSG","4326","EPSG","2777","1.0","-1.0","0.0","1.5029510779743E7","-3165551.699573","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2778","passing","EPSG","4326","EPSG","2778","1.0","-1.0","0.0","1.5442048203015E7","-3186367.239404","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2776","passing","EPSG","4326","EPSG","2776","1.0","-1.0","0.0","13929727.098412","-4708319.149141","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2777","error","EPSG","4326","EPSG","2777","1.0","-1.0","0.0","1.5029510779743E7","-3165551.699573","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2778","error","EPSG","4326","EPSG","2778","1.0","-1.0","0.0","1.5442048203015E7","-3186367.239404","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 2779","passing","EPSG","4326","EPSG","2779","1.0","-1.0","0.0","1.0550650155667E7","427782.799905","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2780","passing","EPSG","4326","EPSG","2780","1.0","-1.0","0.0","1.5511530289253E7","-3817662.34613","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2781","passing","EPSG","4326","EPSG","2781","1.0","-1.0","0.0","1.6884448431364E7","-3863405.498204","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2790","passing","EPSG","4326","EPSG","2790","1.0","-1.0","0.0","1.8509247999883E7","-4716583.113964","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2792","passing","EPSG","4326","EPSG","2792","1.0","-1.0","0.0","1.6980563567191E7","-4483369.918208","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2793","passing","EPSG","4326","EPSG","2793","1.0","-1.0","0.0","1.8470937971857E7","-4522155.488717","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2780","error","EPSG","4326","EPSG","2780","1.0","-1.0","0.0","1.5511530289253E7","-3817662.34613","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2781","error","EPSG","4326","EPSG","2781","1.0","-1.0","0.0","1.6884448431364E7","-3863405.498204","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2790","error","EPSG","4326","EPSG","2790","1.0","-1.0","0.0","1.8509247999883E7","-4716583.113964","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2792","error","EPSG","4326","EPSG","2792","1.0","-1.0","0.0","1.6980563567191E7","-4483369.918208","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2793","error","EPSG","4326","EPSG","2793","1.0","-1.0","0.0","1.8470937971857E7","-4522155.488717","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 2794","passing","EPSG","4326","EPSG","2794","1.0","-1.0","0.0","1.2493754958641E7","2708853.657912","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2795","passing","EPSG","4326","EPSG","2795","1.0","-1.0","0.0","1.1460553625321E7","1661745.543903","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2796","passing","EPSG","4326","EPSG","2796","1.0","-1.0","0.0","1.1621497257386E7","2111191.990303","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -941,8 +941,8 @@ "4326 -> 2799","passing","EPSG","4326","EPSG","2799","1.0","-1.0","0.0","1.0772450358835E7","1132211.773774","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2800","passing","EPSG","4326","EPSG","2800","1.0","-1.0","0.0","1.1703735500459E7","1242402.341635","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2801","passing","EPSG","4326","EPSG","2801","1.0","-1.0","0.0","1.1569510967566E7","1074486.392019","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2802","passing","EPSG","4326","EPSG","2802","1.0","-1.0","0.0","1.0950069857247E7","-5128313.037419","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2803","passing","EPSG","4326","EPSG","2803","1.0","-1.0","0.0","1.2019814649506E7","-5053556.85185","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2802","passing","EPSG","4326","EPSG","2802","1.0","-1.0","0.0","11264435.163777","-5159779.714468","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2803","passing","EPSG","4326","EPSG","2803","1.0","-1.0","0.0","12430605.282352","-5096804.786367","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2804","passing","EPSG","4326","EPSG","2804","1.0","-1.0","0.0","9969626.935369","-276195.787551","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2805","passing","EPSG","4326","EPSG","2805","1.0","-1.0","0.0","9421760.598902","-173719.119739","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2806","passing","EPSG","4326","EPSG","2806","1.0","-1.0","0.0","9582487.179385","-1098419.84739","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -952,14 +952,14 @@ "4326 -> 2810","passing","EPSG","4326","EPSG","2810","1.0","-1.0","0.0","1.190460508534E7","1937737.131019","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2811","passing","EPSG","4326","EPSG","2811","1.0","-1.0","0.0","1.192601192142E7","2053668.621498","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2812","passing","EPSG","4326","EPSG","2812","1.0","-1.0","0.0","1.1867181831423E7","1975209.580327","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2813","passing","EPSG","4326","EPSG","2813","1.0","-1.0","0.0","1.8772001648449E7","-3937156.383224","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2813","error","EPSG","4326","EPSG","2813","1.0","-1.0","0.0","1.8772001648449E7","-3937156.383224","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 2818","passing","EPSG","4326","EPSG","2818","1.0","-1.0","0.0","1.2324918268659E7","4366651.863837","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2819","passing","EPSG","4326","EPSG","2819","1.0","-1.0","0.0","1.1859582682383E7","2563845.950141","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2823","passing","EPSG","4326","EPSG","2823","1.0","-1.0","0.0","1.1862074088415E7","-5033721.498112","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2824","passing","EPSG","4326","EPSG","2824","1.0","-1.0","0.0","1.2603413402636E7","-4662963.007428","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2828","passing","EPSG","4326","EPSG","2828","1.0","-1.0","0.0","1.2603413402636E7","-4662963.007428","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2829","passing","EPSG","4326","EPSG","2829","1.0","-1.0","0.0","1.3411859131067E7","-4823650.932015","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2830","passing","EPSG","4326","EPSG","2830","1.0","-1.0","0.0","1.4237282921893E7","-4857039.255734","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2823","passing","EPSG","4326","EPSG","2823","1.0","-1.0","0.0","12385210.049457","-5091569.861759","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2824","passing","EPSG","4326","EPSG","2824","1.0","-1.0","0.0","13434933.821414","-4765298.621421","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2828","passing","EPSG","4326","EPSG","2828","1.0","-1.0","0.0","13434933.821414","-4765298.621421","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2829","passing","EPSG","4326","EPSG","2829","1.0","-1.0","0.0","14594179.389600","-4984192.934623","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2830","passing","EPSG","4326","EPSG","2830","1.0","-1.0","0.0","15922864.775165","-5116346.421875","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2831","passing","EPSG","4326","EPSG","2831","1.0","-1.0","0.0","9687036.766689","-681351.175466","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2832","passing","EPSG","4326","EPSG","2832","1.0","-1.0","0.0","1.2048562892627E7","2902217.376716","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2833","passing","EPSG","4326","EPSG","2833","1.0","-1.0","0.0","1.2034986427805E7","2850392.620023","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -969,7 +969,7 @@ "4326 -> 2837","passing","EPSG","4326","EPSG","2837","1.0","-1.0","0.0","1.1776028203115E7","1915864.208774","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2838","passing","EPSG","4326","EPSG","2838","1.0","-1.0","0.0","1.4480342629509E7","5714771.517124","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2839","passing","EPSG","4326","EPSG","2839","1.0","-1.0","0.0","1.3589771611216E7","5518383.696956","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2840","passing","EPSG","4326","EPSG","2840","1.0","-1.0","0.0","1.1612262480686E7","-4874528.079031","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2840","passing","EPSG","4326","EPSG","2840","1.0","-1.0","0.0","12121505.329748","-4930522.093156","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2841","passing","EPSG","4326","EPSG","2841","1.0","-1.0","0.0","1.1994495041044E7","2695771.443861","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2842","passing","EPSG","4326","EPSG","2842","1.0","-1.0","0.0","1.1997076072218E7","2676611.855038","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2843","passing","EPSG","4326","EPSG","2843","1.0","-1.0","0.0","1.0846782650395E7","691167.851636","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -981,7 +981,7 @@ "4326 -> 2849","passing","EPSG","4326","EPSG","2849","1.0","-1.0","0.0","1.2410564577759E7","5009447.87745","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2850","passing","EPSG","4326","EPSG","2850","1.0","-1.0","0.0","1.2444482006656E7","5956239.983326","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2851","passing","EPSG","4326","EPSG","2851","1.0","-1.0","0.0","1.2495636574632E7","6739176.857568","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2852","passing","EPSG","4326","EPSG","2852","1.0","-1.0","0.0","1.2316477845608E7","-5043906.115058","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2852","passing","EPSG","4326","EPSG","2852","1.0","-1.0","0.0","12915305.224043","-5112088.044691","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2853","passing","EPSG","4326","EPSG","2853","1.0","-1.0","0.0","1.319415649693E7","1855008.196457","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2854","passing","EPSG","4326","EPSG","2854","1.0","-1.0","0.0","1.3141710050315E7","871305.38436","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2855","passing","EPSG","4326","EPSG","2855","1.0","-1.0","0.0","1.2321126696733E7","5999733.6578","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -1002,14 +1002,14 @@ "4326 -> 2877","passing","EPSG","4326","EPSG","2877","1.0","-1.0","0.0","4.1268644084037E7","1.1130932245931E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 2878","passing","EPSG","4326","EPSG","2878","1.0","-1.0","0.0","4.1300893148666E7","1.0805178197923E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 2879","passing","EPSG","4326","EPSG","2879","1.0","-1.0","0.0","3.152765621337E7","-2216629.556017","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2880","passing","EPSG","4326","EPSG","2880","1.0","-1.0","0.0","4.2520912509465E7","-1.5039645049659E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2881","passing","EPSG","4326","EPSG","2881","1.0","-1.0","0.0","4.9309319950207E7","-1.0385647534347E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2882","passing","EPSG","4326","EPSG","2882","1.0","-1.0","0.0","5.0662786479725E7","-1.0453939851278E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2880","passing","EPSG","4326","EPSG","2880","1.0","-1.0","0.0","45701112.989039","-15447210.408475","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2881","error","EPSG","4326","EPSG","2881","1.0","-1.0","0.0","4.9309319950207E7","-1.0385647534347E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2882","error","EPSG","4326","EPSG","2882","1.0","-1.0","0.0","5.0662786479725E7","-1.0453939851278E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 2883","passing","EPSG","4326","EPSG","2883","1.0","-1.0","0.0","3.461492471905E7","1403484.069356","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2884","passing","EPSG","4326","EPSG","2884","1.0","-1.0","0.0","5.0890745624323E7","-1.2525113880594E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2885","passing","EPSG","4326","EPSG","2885","1.0","-1.0","0.0","5.5395061228234E7","-1.2675189538692E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2889","passing","EPSG","4326","EPSG","2889","1.0","-1.0","0.0","5.5710398969693E7","-1.4711272806654E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2890","passing","EPSG","4326","EPSG","2890","1.0","-1.0","0.0","6.0600068996002E7","-1.4838521799231E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2884","error","EPSG","4326","EPSG","2884","1.0","-1.0","0.0","5.0890745624323E7","-1.2525113880594E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2885","error","EPSG","4326","EPSG","2885","1.0","-1.0","0.0","5.5395061228234E7","-1.2675189538692E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2889","error","EPSG","4326","EPSG","2889","1.0","-1.0","0.0","5.5710398969693E7","-1.4711272806654E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2890","error","EPSG","4326","EPSG","2890","1.0","-1.0","0.0","6.0600068996002E7","-1.4838521799231E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 2891","passing","EPSG","4326","EPSG","2891","1.0","-1.0","0.0","3.5059203444504E7","1569081.232317","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 2892","passing","EPSG","4326","EPSG","2892","1.0","-1.0","0.0","3.5342614219278E7","3714598.128125","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 2893","passing","EPSG","4326","EPSG","2893","1.0","-1.0","0.0","3.2708684370125E7","-906152.346323","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" @@ -1018,11 +1018,11 @@ "4326 -> 2896","passing","EPSG","4326","EPSG","2896","1.0","-1.0","0.0","6.1302193407869E7","3190586.781807","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 2897","passing","EPSG","4326","EPSG","2897","1.0","-1.0","0.0","5.3954791524009E7","2049141.787235","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 2898","passing","EPSG","4326","EPSG","2898","1.0","-1.0","0.0","4.7115923552287E7","1905110.937509","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2899","passing","EPSG","4326","EPSG","2899","1.0","-1.0","0.0","6.1587808741621E7","-1.2917153900627E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2899","error","EPSG","4326","EPSG","2899","1.0","-1.0","0.0","6.1587808741621E7","-1.2917153900627E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 2901","passing","EPSG","4326","EPSG","2901","1.0","-1.0","0.0","4.0436083558584E7","1.432628564251E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2905","passing","EPSG","4326","EPSG","2905","1.0","-1.0","0.0","4.1349698805148E7","-1.5298404466869E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2906","passing","EPSG","4326","EPSG","2906","1.0","-1.0","0.0","4.4002074498844E7","-1.5825594766119E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2907","passing","EPSG","4326","EPSG","2907","1.0","-1.0","0.0","4.6710152386576E7","-1.5935136291522E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2905","passing","EPSG","4326","EPSG","2905","1.0","-1.0","0.0","44077778.712423","-15634150.560445","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2906","passing","EPSG","4326","EPSG","2906","1.0","-1.0","0.0","47881070.213714","-16352306.319676","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2907","passing","EPSG","4326","EPSG","2907","1.0","-1.0","0.0","52240265.516853","-16785879.885769","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2908","passing","EPSG","4326","EPSG","2908","1.0","-1.0","0.0","3.1781553125378E7","-2235399.648173","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 2909","passing","EPSG","4326","EPSG","2909","1.0","-1.0","0.0","3.9529405815696E7","9521710.55353","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 2910","passing","EPSG","4326","EPSG","2910","1.0","-1.0","0.0","3.9484863608277E7","9351681.824221","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" @@ -1047,27 +1047,27 @@ "4326 -> 2929","passing","EPSG","4326","EPSG","2929","1.0","-1.0","0.0","3.7505757277799E7","4256633.987564","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 2930","passing","EPSG","4326","EPSG","2930","1.0","-1.0","0.0","3.7352641535162E7","4272404.775354","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 2931","passing","EPSG","4326","EPSG","2931","1.0","-1.0","0.0","-844965.251976","-113208.317204","-1.323337","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2932","passing","EPSG","4326","EPSG","2932","1.0","-1.0","0.0","-6279343.054902","-2578002.862928","-149.795994","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2932","passing","EPSG","4326","EPSG","2932","1.0","-1.0","0.0","-6291158.335660","-2578737.969225","-149.795994","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2933","passing","EPSG","4326","EPSG","2933","1.0","-1.0","0.0","-8873615.359214","-9738025.800346","1131.519487","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2934","passing","EPSG","4326","EPSG","2934","1.0","-1.0","0.0","1.9900711845179E7","789730.583153","1131.519487","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2935","passing","EPSG","4326","EPSG","2935","1.0","-1.0","0.0","-3644726.452498","-158536.993186","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2936","passing","EPSG","4326","EPSG","2936","1.0","-1.0","0.0","-3094048.773165","-165583.49037","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2937","passing","EPSG","4326","EPSG","2937","1.0","-1.0","0.0","-2565511.945788","-173761.331585","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2938","passing","EPSG","4326","EPSG","2938","1.0","-1.0","0.0","-2062367.431008","-183271.117477","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2939","passing","EPSG","4326","EPSG","2939","1.0","-1.0","0.0","-4102180.408572","-185916.275827","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2940","passing","EPSG","4326","EPSG","2940","1.0","-1.0","0.0","-3630572.782","-197135.417496","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2941","passing","EPSG","4326","EPSG","2941","1.0","-1.0","0.0","-3192658.16706","-210249.302644","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2935","passing","EPSG","4326","EPSG","2935","1.0","-1.0","0.0","-3646360.859963","-158616.866934","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2936","passing","EPSG","4326","EPSG","2936","1.0","-1.0","0.0","-3097176.858209","-165748.676362","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2937","passing","EPSG","4326","EPSG","2937","1.0","-1.0","0.0","-2571294.728755","-174090.343360","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2938","passing","EPSG","4326","EPSG","2938","1.0","-1.0","0.0","-2072743.414265","-183905.766193","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2939","passing","EPSG","4326","EPSG","2939","1.0","-1.0","0.0","-4113026.856873","-186583.398250","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2940","passing","EPSG","4326","EPSG","2940","1.0","-1.0","0.0","-3649507.044302","-198385.466761","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2941","passing","EPSG","4326","EPSG","2941","1.0","-1.0","0.0","-3225005.405022","-212540.194783","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2942","passing","EPSG","4326","EPSG","2942","1.0","-1.0","0.0","2304197.81116","-115338.726084","257.712819","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2943","passing","EPSG","4326","EPSG","2943","1.0","-1.0","0.0","2304072.938586","-115077.797964","41.151999","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2944","passing","EPSG","4326","EPSG","2944","1.0","-1.0","0.0","7939833.583325","-199185.555886","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2945","passing","EPSG","4326","EPSG","2945","1.0","-1.0","0.0","8550689.97567","-215180.26638","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2946","passing","EPSG","4326","EPSG","2946","1.0","-1.0","0.0","9207169.520513","-233982.521348","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2947","passing","EPSG","4326","EPSG","2947","1.0","-1.0","0.0","9915822.915933","-256133.699684","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2948","passing","EPSG","4326","EPSG","2948","1.0","-1.0","0.0","1.0684098555407E7","-282279.21894","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2949","passing","EPSG","4326","EPSG","2949","1.0","-1.0","0.0","1.1520450559131E7","-313185.711591","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2950","passing","EPSG","4326","EPSG","2950","1.0","-1.0","0.0","1.2434455937819E7","-349760.419421","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2951","passing","EPSG","4326","EPSG","2951","1.0","-1.0","0.0","1.3436941307237E7","-393073.000181","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2952","passing","EPSG","4326","EPSG","2952","1.0","-1.0","0.0","1.4540119571761E7","-444379.949362","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2944","passing","EPSG","4326","EPSG","2944","1.0","-1.0","0.0","7976601.826127","-201836.910943","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2945","passing","EPSG","4326","EPSG","2945","1.0","-1.0","0.0","8612137.856451","-219935.732563","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2946","passing","EPSG","4326","EPSG","2946","1.0","-1.0","0.0","9308448.441537","-242408.173378","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2947","passing","EPSG","4326","EPSG","2947","1.0","-1.0","0.0","10081034.668108","-270955.239323","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2948","passing","EPSG","4326","EPSG","2948","1.0","-1.0","0.0","10951884.807940","-308325.366944","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2949","passing","EPSG","4326","EPSG","2949","1.0","-1.0","0.0","11953832.248001","-359297.148725","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2950","passing","EPSG","4326","EPSG","2950","1.0","-1.0","0.0","13139479.444974","-433089.111077","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2951","passing","EPSG","4326","EPSG","2951","1.0","-1.0","0.0","14602368.100993","-550624.402643","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 2952","passing","EPSG","4326","EPSG","2952","1.0","-1.0","0.0","16540704.466247","-776353.629276","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2953","passing","EPSG","4326","EPSG","2953","1.0","-1.0","0.0","1.1911475970543E7","4580906.316255","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2954","passing","EPSG","4326","EPSG","2954","1.0","-1.0","0.0","9313611.418086","-2479552.602219","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2955","passing","EPSG","4326","EPSG","2955","1.0","-1.0","0.0","9380117.510219","-1.9757704843637E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -1078,10 +1078,10 @@ "4326 -> 2961","passing","EPSG","4326","EPSG","2961","1.0","-1.0","0.0","9876408.371062","-255706.192524","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2962","passing","EPSG","4326","EPSG","2962","1.0","-1.0","0.0","8480365.932792","-210356.338473","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2964","passing","EPSG","4326","EPSG","2964","1.0","-1.0","0.0","2.3309991432664E7","3.8057058222507E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2965","passing","EPSG","4326","EPSG","2965","1.0","-1.0","0.0","5.5710398969693E7","-1.4709189473654E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2966","passing","EPSG","4326","EPSG","2966","1.0","-1.0","0.0","6.0600068996002E7","-1.4836438466231E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2967","passing","EPSG","4326","EPSG","2967","1.0","-1.0","0.0","5.5710398969693E7","-1.4709189473654E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2968","passing","EPSG","4326","EPSG","2968","1.0","-1.0","0.0","6.0600068996002E7","-1.4836438466231E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2965","error","EPSG","4326","EPSG","2965","1.0","-1.0","0.0","5.5710398969693E7","-1.4709189473654E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2966","error","EPSG","4326","EPSG","2966","1.0","-1.0","0.0","6.0600068996002E7","-1.4836438466231E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2967","error","EPSG","4326","EPSG","2967","1.0","-1.0","0.0","5.5710398969693E7","-1.4709189473654E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2968","error","EPSG","4326","EPSG","2968","1.0","-1.0","0.0","6.0600068996002E7","-1.4836438466231E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 2969","passing","EPSG","4326","EPSG","2969","1.0","-1.0","0.0","9876397.190046","-254723.882194","-399.743672","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2970","passing","EPSG","4326","EPSG","2970","1.0","-1.0","0.0","9876972.606652","-255021.253096","210.936311","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2971","passing","EPSG","4326","EPSG","2971","1.0","-1.0","0.0","7306251.382692","-180679.977369","-67.117376","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -1100,7 +1100,7 @@ "4326 -> 2987","passing","EPSG","4326","EPSG","2987","1.0","-1.0","0.0","8479842.523962118","-211066.5407926866","-100.373882","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2988","passing","EPSG","4326","EPSG","2988","1.0","-1.0","0.0","722434.134876","-9886095.136093","-503.805708","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2989","passing","EPSG","4326","EPSG","2989","1.0","-1.0","0.0","9876408.370887","-255706.192514","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 2990","passing","EPSG","4326","EPSG","2990","1.0","-1.0","0.0","-7206044.688947","2308192.870905","-350.230773","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 2990","passing","EPSG","4326","EPSG","2990","1.0","-1.0","0.0","-7232048.036772","2306422.714975","-350.230773","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2991","passing","EPSG","4326","EPSG","2991","1.0","-1.0","0.0","1.2428695502962E7","5736547.563465","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2992","passing","EPSG","4326","EPSG","2992","1.0","-1.0","0.0","4.0776560049083E7","1.8820694105857E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 2993","passing","EPSG","4326","EPSG","2993","1.0","-1.0","0.0","1.2428695502962E7","5736547.563465","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -1114,33 +1114,33 @@ "4326 -> 3001","passing","EPSG","4326","EPSG","3001","1.0","-1.0","0.0","-8196705.156102","789820.842694","1103.991405","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3002","passing","EPSG","4326","EPSG","3002","1.0","-1.0","0.0","-8196548.068024","789629.424703","1320.943549","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3003","passing","EPSG","4326","EPSG","3003","1.0","-1.0","0.0","607000.706445","-111707.722932","-71.709798","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3004","passing","EPSG","4326","EPSG","3004","1.0","-1.0","0.0","946515.812053","-114022.912099","-71.709798","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3004","passing","EPSG","4326","EPSG","3004","1.0","-1.0","0.0","946515.554245","-114022.916716","-71.709798","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3005","passing","EPSG","4326","EPSG","3005","1.0","-1.0","0.0","1.0954441469536E7","7888694.850647","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3006","passing","EPSG","4326","EPSG","3006","1.0","-1.0","0.0","-1073447.882706","-113937.036743","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3007","passing","EPSG","4326","EPSG","3007","1.0","-1.0","0.0","-1081967.65415","-112657.885597","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3008","passing","EPSG","4326","EPSG","3008","1.0","-1.0","0.0","-1252522.815483","-113277.274139","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3009","passing","EPSG","4326","EPSG","3009","1.0","-1.0","0.0","-1424077.256672","-113982.625197","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3010","passing","EPSG","4326","EPSG","3010","1.0","-1.0","0.0","-1596762.562957","-114776.551708","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3011","passing","EPSG","4326","EPSG","3011","1.0","-1.0","0.0","-1770714.490165","-115662.040423","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3012","passing","EPSG","4326","EPSG","3012","1.0","-1.0","0.0","-1338166.993449","-113619.049509","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3013","passing","EPSG","4326","EPSG","3013","1.0","-1.0","0.0","-1510270.171064","-114368.338914","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3014","passing","EPSG","4326","EPSG","3014","1.0","-1.0","0.0","-1683571.536271","-115207.648789","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3015","passing","EPSG","4326","EPSG","3015","1.0","-1.0","0.0","-1858209.137234","-116140.162883","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3016","passing","EPSG","4326","EPSG","3016","1.0","-1.0","0.0","-2034326.041478","-117169.481617","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3017","passing","EPSG","4326","EPSG","3017","1.0","-1.0","0.0","-2212070.945308","-118299.655886","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3018","passing","EPSG","4326","EPSG","3018","1.0","-1.0","0.0","-2391598.821908","-119535.225511","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3008","passing","EPSG","4326","EPSG","3008","1.0","-1.0","0.0","-1252522.927306","-113277.275955","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3009","passing","EPSG","4326","EPSG","3009","1.0","-1.0","0.0","-1424077.513711","-113982.629795","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3010","passing","EPSG","4326","EPSG","3010","1.0","-1.0","0.0","-1596763.115252","-114776.562495","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3011","passing","EPSG","4326","EPSG","3011","1.0","-1.0","0.0","-1770715.611551","-115662.064177","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3012","passing","EPSG","4326","EPSG","3012","1.0","-1.0","0.0","-1338167.164560","-113619.052429","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3013","passing","EPSG","4326","EPSG","3013","1.0","-1.0","0.0","-1510270.550748","-114368.346018","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3014","passing","EPSG","4326","EPSG","3014","1.0","-1.0","0.0","-1683572.328388","-115207.664914","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3015","passing","EPSG","4326","EPSG","3015","1.0","-1.0","0.0","-1858210.705750","-116140.197409","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3016","passing","EPSG","4326","EPSG","3016","1.0","-1.0","0.0","-2034329.011169","-117169.551923","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3017","passing","EPSG","4326","EPSG","3017","1.0","-1.0","0.0","-2212076.352748","-118299.792953","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3018","passing","EPSG","4326","EPSG","3018","1.0","-1.0","0.0","-2391608.336377","-119535.482706","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3019","passing","EPSG","4326","EPSG","3019","1.0","-1.0","0.0","346704.577358","-112939.360393","335.681331","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3020","passing","EPSG","4326","EPSG","3020","1.0","-1.0","0.0","91185.341497","-113846.009196","335.681331","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3021","passing","EPSG","4326","EPSG","3021","1.0","-1.0","0.0","-166593.824591","-114947.287526","335.681331","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3022","passing","EPSG","4326","EPSG","3022","1.0","-1.0","0.0","-427081.100139","-116252.424873","335.681331","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3023","passing","EPSG","4326","EPSG","3023","1.0","-1.0","0.0","-690747.305397","-117772.629179","335.681331","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3024","passing","EPSG","4326","EPSG","3024","1.0","-1.0","0.0","-958090.341078","-119521.322114","335.681331","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3020","passing","EPSG","4326","EPSG","3020","1.0","-1.0","0.0","91185.226276","-113846.011084","335.681331","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3021","passing","EPSG","4326","EPSG","3021","1.0","-1.0","0.0","-166594.214399","-114947.294877","335.681331","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3022","passing","EPSG","4326","EPSG","3022","1.0","-1.0","0.0","-427082.248251","-116252.449380","335.681331","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3023","passing","EPSG","4326","EPSG","3023","1.0","-1.0","0.0","-690750.339213","-117772.701535","335.681331","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3024","passing","EPSG","4326","EPSG","3024","1.0","-1.0","0.0","-958097.685180","-119521.515827","335.681331","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3025","passing","EPSG","4326","EPSG","3025","1.0","-1.0","0.0","346516.314724","-112389.766401","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3026","passing","EPSG","4326","EPSG","3026","1.0","-1.0","0.0","90995.171151","-113292.139334","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3027","passing","EPSG","4326","EPSG","3027","1.0","-1.0","0.0","-166786.241696","-114388.200176","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3028","passing","EPSG","4326","EPSG","3028","1.0","-1.0","0.0","-427276.122156","-115687.134881","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3029","passing","EPSG","4326","EPSG","3029","1.0","-1.0","0.0","-690945.313151","-117200.098387","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3030","passing","EPSG","4326","EPSG","3030","1.0","-1.0","0.0","-958291.742032","-118940.44878","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3026","passing","EPSG","4326","EPSG","3026","1.0","-1.0","0.0","90995.055815","-113292.141215","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3027","passing","EPSG","4326","EPSG","3027","1.0","-1.0","0.0","-166786.631850","-114388.207499","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3028","passing","EPSG","4326","EPSG","3028","1.0","-1.0","0.0","-427277.271183","-115687.159290","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3029","passing","EPSG","4326","EPSG","3029","1.0","-1.0","0.0","-690948.349174","-117200.170447","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3030","passing","EPSG","4326","EPSG","3030","1.0","-1.0","0.0","-958299.091057","-118940.641688","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3031","passing","EPSG","4326","EPSG","3031","1.0","-1.0","0.0","212130.970841","1.2152975180149E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3032","passing","EPSG","4326","EPSG","3032","1.0","-1.0","0.0","-5347508.03233","1.0355900220887E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3033","passing","EPSG","4326","EPSG","3033","1.0","-1.0","0.0","-4633172.22109","6276793.324538","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -1167,22 +1167,22 @@ "4326 -> 3056","passing","EPSG","4326","EPSG","3056","1.0","-1.0","0.0","2303899.745469","-114932.181307","-180.262485","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3057","passing","EPSG","4326","EPSG","3057","1.0","-1.0","0.0","4171439.777959","-7733055.058238","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3058","passing","EPSG","4326","EPSG","3058","1.0","-1.0","0.0","1112400.244207","-7912590.712143","-1359.268946","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3059","passing","EPSG","4326","EPSG","3059","1.0","-1.0","0.0","-2131028.856678","-6120146.01892","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3059","passing","EPSG","4326","EPSG","3059","1.0","-1.0","0.0","-2131041.326629","-6120146.366566","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3060","passing","EPSG","4326","EPSG","3060","1.0","-1.0","0.0","-1304310.336203","-9881249.539094","-228.140701","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3061","passing","EPSG","4326","EPSG","3061","1.0","-1.0","0.0","2304196.123507","-115337.320798","261.52399","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3062","passing","EPSG","4326","EPSG","3062","1.0","-1.0","0.0","3748058.512896","-125361.544371","-47.89594","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3063","passing","EPSG","4326","EPSG","3063","1.0","-1.0","0.0","3748031.747101","-125257.743556","-148.340665","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3064","passing","EPSG","4326","EPSG","3064","1.0","-1.0","0.0","-392989.214538","-111623.606591","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3065","passing","EPSG","4326","EPSG","3065","1.0","-1.0","0.0","-1073447.882705","-113937.036746","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3066","passing","EPSG","4326","EPSG","3066","1.0","-1.0","0.0","-3800795.020141","-3136715.48826","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3066","passing","EPSG","4326","EPSG","3066","1.0","-1.0","0.0","-3801362.094746","-3136739.956734","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3067","passing","EPSG","4326","EPSG","3067","1.0","-1.0","0.0","-2498135.612029","-123071.814862","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3068","passing","EPSG","4326","EPSG","3068","1.0","-1.0","0.0","-1365260.599756","-5913085.86404","105.205271","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3072","passing","EPSG","4326","EPSG","3072","1.0","-1.0","0.0","1.1180772997795E7","-5141094.694271","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3073","passing","EPSG","4326","EPSG","3073","1.0","-1.0","0.0","1.1324154703457E7","-5061023.391585","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3074","passing","EPSG","4326","EPSG","3074","1.0","-1.0","0.0","1.1480217073422E7","-5055926.342392","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3075","passing","EPSG","4326","EPSG","3075","1.0","-1.0","0.0","1.1180772997795E7","-5141094.694271","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3076","passing","EPSG","4326","EPSG","3076","1.0","-1.0","0.0","1.1324154703457E7","-5061023.391585","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3077","passing","EPSG","4326","EPSG","3077","1.0","-1.0","0.0","1.1480217073422E7","-5055926.342392","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3068","passing","EPSG","4326","EPSG","3068","1.0","-1.0","0.0","-1365260.463228","-5913085.864039","105.205271","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3072","passing","EPSG","4326","EPSG","3072","1.0","-1.0","0.0","11465183.093366","-5169053.574542","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3073","passing","EPSG","4326","EPSG","3073","1.0","-1.0","0.0","11671689.678538","-5096459.957158","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3074","passing","EPSG","4326","EPSG","3074","1.0","-1.0","0.0","11905005.691833","-5100943.641776","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3075","passing","EPSG","4326","EPSG","3075","1.0","-1.0","0.0","11465183.093366","-5169053.574542","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3076","passing","EPSG","4326","EPSG","3076","1.0","-1.0","0.0","11671689.678538","-5096459.957158","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3077","passing","EPSG","4326","EPSG","3077","1.0","-1.0","0.0","11905005.691833","-5100943.641776","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3078","passing","EPSG","4326","EPSG","3078","1.0","-1.0","0.0","1.2974290765671E7","-4688338.053865","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3079","passing","EPSG","4326","EPSG","3079","1.0","-1.0","0.0","1.2974290765671E7","-4688338.053865","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3080","passing","EPSG","4326","EPSG","3080","1.0","-1.0","0.0","4.0028525540754E7","8920533.352447","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" @@ -1211,43 +1211,43 @@ "4326 -> 3103","passing","EPSG","4326","EPSG","3103","1.0","-1.0","0.0","2303912.2838","-115005.28615","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3104","passing","EPSG","4326","EPSG","3104","1.0","-1.0","0.0","1618328.893064","-112236.508712","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3105","passing","EPSG","4326","EPSG","3105","1.0","-1.0","0.0","945404.562756","-110791.642237","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3106","passing","EPSG","4326","EPSG","3106","1.0","-1.0","0.0","-1.7529831967062E7","-648424.255046","568.748383","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3106","error","EPSG","4326","EPSG","3106","1.0","-1.0","0.0","-1.7529831967062E7","-648424.255046","568.748383","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 3107","passing","EPSG","4326","EPSG","3107","1.0","-1.0","0.0","-1.2026827635186E7","-3715356.006211","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3108","passing","EPSG","4326","EPSG","3108","1.0","-1.0","0.0","427509.877329","-5545990.703908","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3109","passing","EPSG","4326","EPSG","3109","1.0","-1.0","0.0","389109.080568","-5495390.959162","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3110","passing","EPSG","4326","EPSG","3110","1.0","-1.0","0.0","-1.0194328543259E7","-3233066.336786","99.926015","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3111","passing","EPSG","4326","EPSG","3111","1.0","-1.0","0.0","-1.0194432314248E7","-5233080.060971","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3112","passing","EPSG","4326","EPSG","3112","1.0","-1.0","0.0","-1.3299840044712E7","-7898676.200665","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3114","passing","EPSG","4326","EPSG","3114","1.0","-1.0","0.0","1.5461813475518E7","36428.317427","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3115","passing","EPSG","4326","EPSG","3115","1.0","-1.0","0.0","1.4337611326142E7","89441.190405","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3116","passing","EPSG","4326","EPSG","3116","1.0","-1.0","0.0","1.3316634685515E7","134193.309447","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3117","passing","EPSG","4326","EPSG","3117","1.0","-1.0","0.0","1.2386385982502E7","171980.302929","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3118","passing","EPSG","4326","EPSG","3118","1.0","-1.0","0.0","1.1535781567243E7","203905.923288","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3114","passing","EPSG","4326","EPSG","3114","1.0","-1.0","0.0","17699809.426196","-357086.193382","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3115","passing","EPSG","4326","EPSG","3115","1.0","-1.0","0.0","15625825.901166","-90308.183733","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3116","passing","EPSG","4326","EPSG","3116","1.0","-1.0","0.0","14092045.528655","40419.551606","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3117","passing","EPSG","4326","EPSG","3117","1.0","-1.0","0.0","12862060.759613","120410.253742","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3118","passing","EPSG","4326","EPSG","3118","1.0","-1.0","0.0","11829585.128124","174855.501212","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3119","passing","EPSG","4326","EPSG","3119","1.0","-1.0","0.0","-61090.418752","888078.471206","-43.414236","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3120","passing","EPSG","4326","EPSG","3120","1.0","-1.0","0.0","1872060.582589","-442789.471158","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3126","passing","EPSG","4326","EPSG","3126","1.0","-1.0","0.0","-1537455.282542","-116304.889832","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3127","passing","EPSG","4326","EPSG","3127","1.0","-1.0","0.0","-1654864.258411","-116991.03987","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3128","passing","EPSG","4326","EPSG","3128","1.0","-1.0","0.0","-1772985.462609","-117721.690014","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3129","passing","EPSG","4326","EPSG","3129","1.0","-1.0","0.0","-1891864.157199","-118498.134892","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3130","passing","EPSG","4326","EPSG","3130","1.0","-1.0","0.0","-2011546.910403","-119321.76978","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3131","passing","EPSG","4326","EPSG","3131","1.0","-1.0","0.0","-2132081.689353","-120194.096558","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3132","passing","EPSG","4326","EPSG","3132","1.0","-1.0","0.0","-2253517.956868","-121116.730153","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3133","passing","EPSG","4326","EPSG","3133","1.0","-1.0","0.0","-2375906.772431","-122091.405505","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3134","passing","EPSG","4326","EPSG","3134","1.0","-1.0","0.0","-2499300.897575","-123119.985081","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3135","passing","EPSG","4326","EPSG","3135","1.0","-1.0","0.0","-2623754.905846","-124204.466965","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3136","passing","EPSG","4326","EPSG","3136","1.0","-1.0","0.0","-2749325.297564","-125346.993562","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3137","passing","EPSG","4326","EPSG","3137","1.0","-1.0","0.0","-2876070.619546","-126549.860952","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3138","passing","EPSG","4326","EPSG","3138","1.0","-1.0","0.0","-3004051.589992","-127815.528912","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3140","passing","EPSG","4326","EPSG","3140","1.0","-1.0","0.0","-1.9619171831241924E7","-637586.283225383","-1364.089388","1.000000","1.000000","1.000000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3126","passing","EPSG","4326","EPSG","3126","1.0","-1.0","0.0","-1537457.032267","-116304.928830","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3127","passing","EPSG","4326","EPSG","3127","1.0","-1.0","0.0","-1654866.936011","-116991.102518","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3128","passing","EPSG","4326","EPSG","3128","1.0","-1.0","0.0","-1772989.488214","-117721.788681","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3129","passing","EPSG","4326","EPSG","3129","1.0","-1.0","0.0","-1891870.112103","-118498.287502","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3130","passing","EPSG","4326","EPSG","3130","1.0","-1.0","0.0","-2011555.588889","-119322.001934","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3131","passing","EPSG","4326","EPSG","3131","1.0","-1.0","0.0","-2132094.164295","-120194.444343","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3132","passing","EPSG","4326","EPSG","3132","1.0","-1.0","0.0","-2253535.662092","-121117.243828","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3133","passing","EPSG","4326","EPSG","3133","1.0","-1.0","0.0","-2375931.605348","-122092.154283","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3134","passing","EPSG","4326","EPSG","3134","1.0","-1.0","0.0","-2499335.346168","-123121.063287","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3135","passing","EPSG","4326","EPSG","3135","1.0","-1.0","0.0","-2623802.204810","-124206.001913","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3136","passing","EPSG","4326","EPSG","3136","1.0","-1.0","0.0","-2749389.619142","-125349.155547","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3137","passing","EPSG","4326","EPSG","3137","1.0","-1.0","0.0","-2876157.305504","-126552.875849","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3138","passing","EPSG","4326","EPSG","3138","1.0","-1.0","0.0","-3004167.432204","-127819.693982","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3140","passing","EPSG","4326","EPSG","3140","1.0","-1.0","0.0","-97161737.620000","-3169421.992000","-1364.089388","1.000000","1.000000","1.000000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed after +units=link stopped being ignored - matches PROJ 9.6.0" "4326 -> 3141","passing","EPSG","4326","EPSG","3141","1.0","-1.0","0.0","54966.605979","-9885958.68089","-526.005956","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3142","passing","EPSG","4326","EPSG","3142","1.0","-1.0","0.0","722950.968431","-9886161.510276","-526.005956","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3146","passing","EPSG","4326","EPSG","3146","1.0","-1.0","0.0","4579374.166561","-115567.820871","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3147","passing","EPSG","4326","EPSG","3147","1.0","-1.0","0.0","-1420625.833439","-115567.820871","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3146","passing","EPSG","4326","EPSG","3146","1.0","-1.0","0.0","4579373.045789","-115567.844591","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3147","passing","EPSG","4326","EPSG","3147","1.0","-1.0","0.0","-1420626.954211","-115567.844591","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3148","passing","EPSG","4326","EPSG","3148","1.0","-1.0","0.0","-1.3011590728014E7","-1.950874301949E7","652.886857","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3149","passing","EPSG","4326","EPSG","3149","1.0","-1.0","0.0","-1.0620884199265E7","-1.9661226637366E7","652.886857","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3150","passing","EPSG","4326","EPSG","3150","1.0","-1.0","0.0","4579385.695259","-115578.401542","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3151","passing","EPSG","4326","EPSG","3151","1.0","-1.0","0.0","-1420614.304741","-115578.401542","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3152","passing","EPSG","4326","EPSG","3152","1.0","-1.0","0.0","-1827254.246972","-6616312.15012","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3150","passing","EPSG","4326","EPSG","3150","1.0","-1.0","0.0","4579384.574539","-115578.425263","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3151","passing","EPSG","4326","EPSG","3151","1.0","-1.0","0.0","-1420615.425461","-115578.425263","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3152","passing","EPSG","4326","EPSG","3152","1.0","-1.0","0.0","-1827255.398204","-6616312.174581","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3153","passing","EPSG","4326","EPSG","3153","1.0","-1.0","0.0","1.0954441469536E7","7888694.850647","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3154","passing","EPSG","4326","EPSG","3154","1.0","-1.0","0.0","5079577.277109","-1.9855384152114E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3155","passing","EPSG","4326","EPSG","3155","1.0","-1.0","0.0","5967185.609991","-1.9841803628716E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -1269,7 +1269,7 @@ "4326 -> 3172","passing","EPSG","4326","EPSG","3172","1.0","-1.0","0.0","-618177.790064","-9884456.438511","-543.926502","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3174","passing","EPSG","4326","EPSG","3174","1.0","-1.0","0.0","1.0666484178778E7","1886187.044221","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3175","passing","EPSG","4326","EPSG","3175","1.0","-1.0","0.0","1.0584630186397E7","1741605.538663","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3177","passing","EPSG","4326","EPSG","3177","1.0","-1.0","0.0","-798244.215032","-114656.316772","-40.756682","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3177","passing","EPSG","4326","EPSG","3177","1.0","-1.0","0.0","-798244.917875","-114656.330890","-40.756682","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3178","passing","EPSG","4326","EPSG","3178","1.0","-1.0","0.0","1.4018825808604E7","-484015.283423","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3179","passing","EPSG","4326","EPSG","3179","1.0","-1.0","0.0","1.1625664379252E7","-331585.409964","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3180","passing","EPSG","4326","EPSG","3180","1.0","-1.0","0.0","9876408.371062","-255706.192524","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -1285,12 +1285,12 @@ "4326 -> 3190","passing","EPSG","4326","EPSG","3190","1.0","-1.0","0.0","-693229.861038","-111660.575057","-40.756682","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3191","passing","EPSG","4326","EPSG","3191","1.0","-1.0","0.0","-918636.451459","-112283.794692","-40.756682","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3192","passing","EPSG","4326","EPSG","3192","1.0","-1.0","0.0","-1145443.822283","-113053.488478","-40.756682","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3193","passing","EPSG","4326","EPSG","3193","1.0","-1.0","0.0","-1373951.486587","-113974.628182","-40.756682","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3194","passing","EPSG","4326","EPSG","3194","1.0","-1.0","0.0","-1604469.947638","-115053.270403","-40.756682","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3195","passing","EPSG","4326","EPSG","3195","1.0","-1.0","0.0","-1837322.902009","-116296.654693","-40.756682","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3196","passing","EPSG","4326","EPSG","3196","1.0","-1.0","0.0","-2072849.614073","-117713.32271","-40.756682","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3197","passing","EPSG","4326","EPSG","3197","1.0","-1.0","0.0","-2311407.486339","-119313.260944","-40.756682","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3198","passing","EPSG","4326","EPSG","3198","1.0","-1.0","0.0","-2553374.850144","-121108.06991","-40.756682","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3193","passing","EPSG","4326","EPSG","3193","1.0","-1.0","0.0","-1373951.744386","-113974.632794","-40.756682","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3194","passing","EPSG","4326","EPSG","3194","1.0","-1.0","0.0","-1604470.652914","-115053.284570","-40.756682","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3195","passing","EPSG","4326","EPSG","3195","1.0","-1.0","0.0","-1837324.655728","-116296.693789","-40.756682","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3196","passing","EPSG","4326","EPSG","3196","1.0","-1.0","0.0","-2072853.647789","-117713.421594","-40.756682","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3197","passing","EPSG","4326","EPSG","3197","1.0","-1.0","0.0","-2311416.180317","-119313.493552","-40.756682","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3198","passing","EPSG","4326","EPSG","3198","1.0","-1.0","0.0","-2553392.583479","-121108.584480","-40.756682","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3199","passing","EPSG","4326","EPSG","3199","1.0","-1.0","0.0","-392917.220112","-111621.491959","-40.756682","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3200","passing","EPSG","4326","EPSG","3200","1.0","-1.0","0.0","-4082761.828967","-1578178.241073","139.210065","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3201","passing","EPSG","4326","EPSG","3201","1.0","-1.0","0.0","-1073400.83373","-113934.739678","-40.756682","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -1406,47 +1406,47 @@ "4326 -> 3312","passing","EPSG","4326","EPSG","3312","1.0","-1.0","0.0","8480313.034712","-210563.081955","-67.117376","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3313","passing","EPSG","4326","EPSG","3313","1.0","-1.0","0.0","8480365.932792","-210356.338473","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3314","passing","EPSG","4326","EPSG","3314","1.0","-1.0","0.0","-2804750.582227","-207213.08153","30.092356","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3315","passing","EPSG","4326","EPSG","3315","1.0","-1.0","0.0","-2875364.065092","873203.801076","30.092356","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3316","passing","EPSG","4326","EPSG","3316","1.0","-1.0","0.0","-1891673.388109","9881523.678827","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3317","passing","EPSG","4326","EPSG","3317","1.0","-1.0","0.0","-2131873.253234","9879827.812046","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3315","passing","EPSG","4326","EPSG","3315","1.0","-1.0","0.0","-2875389.012545","873203.050139","30.092356","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3316","passing","EPSG","4326","EPSG","3316","1.0","-1.0","0.0","-1891679.394772","9881523.524744","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3317","passing","EPSG","4326","EPSG","3317","1.0","-1.0","0.0","-2131885.825069","9879827.461252","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3318","passing","EPSG","4326","EPSG","3318","1.0","-1.0","0.0","-731866.989627","9887363.53525","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3319","passing","EPSG","4326","EPSG","3319","1.0","-1.0","0.0","-959471.327572","9886518.765923","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3320","passing","EPSG","4326","EPSG","3320","1.0","-1.0","0.0","-1188929.879708","9885519.664619","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3321","passing","EPSG","4326","EPSG","3321","1.0","-1.0","0.0","-1420559.475487","9884359.595402","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3322","passing","EPSG","4326","EPSG","3322","1.0","-1.0","0.0","-1654691.304895","9883030.682331","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3323","passing","EPSG","4326","EPSG","3323","1.0","-1.0","0.0","-1891673.388109","9881523.678827","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3324","passing","EPSG","4326","EPSG","3324","1.0","-1.0","0.0","-2131873.253234","9879827.812046","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3325","passing","EPSG","4326","EPSG","3325","1.0","-1.0","0.0","-2375680.846625","9877930.59922","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3326","passing","EPSG","4326","EPSG","3326","1.0","-1.0","0.0","-2623511.700253","9875817.632582","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3327","passing","EPSG","4326","EPSG","3327","1.0","-1.0","0.0","-2875810.380615","9873472.329127","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3319","passing","EPSG","4326","EPSG","3319","1.0","-1.0","0.0","-959471.478502","9886518.763385","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3320","passing","EPSG","4326","EPSG","3320","1.0","-1.0","0.0","-1188930.316010","9885519.656327","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3321","passing","EPSG","4326","EPSG","3321","1.0","-1.0","0.0","-1420560.609246","9884359.571357","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3322","passing","EPSG","4326","EPSG","3322","1.0","-1.0","0.0","-1654694.008658","9883030.619006","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3323","passing","EPSG","4326","EPSG","3323","1.0","-1.0","0.0","-1891679.394772","9881523.524744","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3324","passing","EPSG","4326","EPSG","3324","1.0","-1.0","0.0","-2131885.825069","9879827.461252","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3325","passing","EPSG","4326","EPSG","3325","1.0","-1.0","0.0","-2375705.852686","9877929.844611","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3326","passing","EPSG","4326","EPSG","3326","1.0","-1.0","0.0","-2623559.296612","9875816.086822","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3327","passing","EPSG","4326","EPSG","3327","1.0","-1.0","0.0","-2875897.560311","9873469.294933","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3328","passing","EPSG","4326","EPSG","3328","1.0","-1.0","0.0","-2031436.197892","-5654801.182261","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3329","passing","EPSG","4326","EPSG","3329","1.0","-1.0","0.0","3926020.769368","-113907.423756","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3330","passing","EPSG","4326","EPSG","3330","1.0","-1.0","0.0","4579379.43813","-115585.604755","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3331","passing","EPSG","4326","EPSG","3331","1.0","-1.0","0.0","5227104.688216","-117643.760239","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3332","passing","EPSG","4326","EPSG","3332","1.0","-1.0","0.0","5868005.018599","-120114.388691","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3333","passing","EPSG","4326","EPSG","3333","1.0","-1.0","0.0","1926020.769368","-113907.423756","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3334","passing","EPSG","4326","EPSG","3334","1.0","-1.0","0.0","2227104.688216","-117643.760239","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3335","passing","EPSG","4326","EPSG","3335","1.0","-1.0","0.0","2500782.72258","-123038.185131","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3329","passing","EPSG","4326","EPSG","3329","1.0","-1.0","0.0","3926020.512501","-113907.428347","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3330","passing","EPSG","4326","EPSG","3330","1.0","-1.0","0.0","4579378.317382","-115585.628479","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3331","passing","EPSG","4326","EPSG","3331","1.0","-1.0","0.0","5227100.664595","-117643.858785","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3332","passing","EPSG","4326","EPSG","3332","1.0","-1.0","0.0","5867992.549060","-120114.736072","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3333","passing","EPSG","4326","EPSG","3333","1.0","-1.0","0.0","1926020.512501","-113907.428347","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3334","passing","EPSG","4326","EPSG","3334","1.0","-1.0","0.0","2227100.664595","-117643.858785","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3335","passing","EPSG","4326","EPSG","3335","1.0","-1.0","0.0","2500748.287266","-123039.262143","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3336","passing","EPSG","4326","EPSG","3336","1.0","-1.0","0.0","-9990877.774436","9698468.818475","-390.863651","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3337","passing","EPSG","4326","EPSG","3337","1.0","-1.0","0.0","-5516800.130784","2042551.964273","646.389694","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3338","passing","EPSG","4326","EPSG","3338","1.0","-1.0","0.0","7104914.414304","1.1599667194798E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3339","passing","EPSG","4326","EPSG","3339","1.0","-1.0","0.0","-731708.020565","9887525.200371","-32.35","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3340","passing","EPSG","4326","EPSG","3340","1.0","-1.0","0.0","-959311.270297","9886681.745298","-32.35","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3341","passing","EPSG","4326","EPSG","3341","1.0","-1.0","0.0","-1188768.52017","9885684.183161","-32.35","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3340","passing","EPSG","4326","EPSG","3340","1.0","-1.0","0.0","-959311.421110","9886681.742766","-32.35","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3341","passing","EPSG","4326","EPSG","3341","1.0","-1.0","0.0","-1188768.956170","9885684.174887","-32.35","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3342","passing","EPSG","4326","EPSG","3342","1.0","-1.0","0.0","-1073316.729204","9886236.752043","-32.35","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3343","passing","EPSG","4326","EPSG","3343","1.0","-1.0","0.0","2303877.831952","-115015.371832","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3344","passing","EPSG","4326","EPSG","3344","1.0","-1.0","0.0","1618308.573583","-112246.669259","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3345","passing","EPSG","4326","EPSG","3345","1.0","-1.0","0.0","945396.683977","-110801.832543","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3346","passing","EPSG","4326","EPSG","3346","1.0","-1.0","0.0","-2131555.273016","-120170.057739","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3346","passing","EPSG","4326","EPSG","3346","1.0","-1.0","0.0","-2131567.745462","-120170.405454","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3347","passing","EPSG","4326","EPSG","3347","1.0","-1.0","0.0","1.7546190024318E7","4821185.337535","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3348","passing","EPSG","4326","EPSG","3348","1.0","-1.0","0.0","1.7546190024318E7","4821185.337535","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3349","passing","EPSG","4326","EPSG","3349","1.0","-1.0","0.0","1.6809243109784E7","-110579.965222","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3350","passing","EPSG","4326","EPSG","3350","1.0","-1.0","0.0","-2135817.918614","-129419.162244","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3351","passing","EPSG","4326","EPSG","3351","1.0","-1.0","0.0","-1497343.823834","-132028.066478","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3352","passing","EPSG","4326","EPSG","3352","1.0","-1.0","0.0","-867429.173853","-135104.906278","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3350","passing","EPSG","4326","EPSG","3350","1.0","-1.0","0.0","-2135823.757550","-129419.311423","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3351","passing","EPSG","4326","EPSG","3351","1.0","-1.0","0.0","-1497361.219844","-132028.569751","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3352","passing","EPSG","4326","EPSG","3352","1.0","-1.0","0.0","-867475.723252","-135106.412890","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3353","passing","EPSG","4326","EPSG","3353","1.0","-1.0","0.0","-393024.444389","9888375.147817","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3354","passing","EPSG","4326","EPSG","3354","1.0","-1.0","0.0","-393024.444389","9888375.147817","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3355","passing","EPSG","4326","EPSG","3355","1.0","-1.0","0.0","-2889219.088867","-2637968.875663","81.270957","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3355","passing","EPSG","4326","EPSG","3355","1.0","-1.0","0.0","-2889334.960870","-2637973.041975","81.270957","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3358","passing","EPSG","4326","EPSG","3358","1.0","-1.0","0.0","1.0212602585283E7","-17652.610423","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3359","passing","EPSG","4326","EPSG","3359","1.0","-1.0","0.0","3.3505913991095E7","-57915.388525","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 3360","passing","EPSG","4326","EPSG","3360","1.0","-1.0","0.0","1.0339890150895E7","211156.727684","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -1455,7 +1455,7 @@ "4326 -> 3363","passing","EPSG","4326","EPSG","3363","1.0","-1.0","0.0","3.3966386502944E7","-702622.902526","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 3364","passing","EPSG","4326","EPSG","3364","1.0","-1.0","0.0","1.0308283550952E7","-220512.975756","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3365","passing","EPSG","4326","EPSG","3365","1.0","-1.0","0.0","3.3819760283415E7","-723466.321292","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3366","passing","EPSG","4326","EPSG","3366","1.0","-1.0","0.0","-1.2558563688869E7","-3132655.317332","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3366","passing","EPSG","4326","EPSG","3366","1.0","-1.0","0.0","-12550723.926083","-3132655.317332","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3367","passing","EPSG","4326","EPSG","3367","1.0","-1.0","0.0","2303912.2838","-115005.28615","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3368","passing","EPSG","4326","EPSG","3368","1.0","-1.0","0.0","1618328.893064","-112236.508712","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3369","passing","EPSG","4326","EPSG","3369","1.0","-1.0","0.0","945404.562756","-110791.642237","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -1465,19 +1465,19 @@ "4326 -> 3373","passing","EPSG","4326","EPSG","3373","1.0","-1.0","0.0","54603.316023","-1.9885128053335E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3374","passing","EPSG","4326","EPSG","3374","1.0","-1.0","0.0","1618352.752826","-112247.940062","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3375","passing","EPSG","4326","EPSG","3375","1.0","-1.0","0.0","-1.2155003144452E7","6081703.416902","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3376","failing","EPSG","4326","EPSG","3376","1.0","-1.0","0.0","-1.2409058238151E7","-4357833.596094","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3377","passing","EPSG","4326","EPSG","3377","1.0","-1.0","0.0","-1.1415841233162E7","-752918.108915","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3378","passing","EPSG","4326","EPSG","3378","1.0","-1.0","0.0","-1.1235544208125E7","-809647.032818","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3379","passing","EPSG","4326","EPSG","3379","1.0","-1.0","0.0","-1.1290394712508E7","-924005.616355","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3380","passing","EPSG","4326","EPSG","3380","1.0","-1.0","0.0","-1.1208820519631E7","-852589.955809","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3381","passing","EPSG","4326","EPSG","3381","1.0","-1.0","0.0","-1.1341605904493E7","-1069407.513536","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3382","passing","EPSG","4326","EPSG","3382","1.0","-1.0","0.0","-1.1057670581759E7","-1088495.138159","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3383","passing","EPSG","4326","EPSG","3383","1.0","-1.0","0.0","-1.1090162156955E7","-1152101.093132","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3384","passing","EPSG","4326","EPSG","3384","1.0","-1.0","0.0","-1.1110100987491E7","-898528.707554","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3385","passing","EPSG","4326","EPSG","3385","1.0","-1.0","0.0","-1.1261662905673E7","-1164471.611763","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3386","passing","EPSG","4326","EPSG","3386","1.0","-1.0","0.0","-1420665.38327","-115528.544055","-165.167033","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3387","passing","EPSG","4326","EPSG","3387","1.0","-1.0","0.0","1736011.201468","-130395.075894","-165.167033","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3388","failing","EPSG","4326","EPSG","3388","1.0","-1.0","0.0","-4142520.752562","-82233.758419","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3376","passing","EPSG","4326","EPSG","3376","1.0","-1.0","0.0","-1.2409058238151E7","-4357833.596094","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3377","passing","EPSG","4326","EPSG","3377","1.0","-1.0","0.0","-11411082.142794","-752918.108915","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3378","passing","EPSG","4326","EPSG","3378","1.0","-1.0","0.0","-11231113.235098","-809647.032818","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3379","passing","EPSG","4326","EPSG","3379","1.0","-1.0","0.0","-11285876.749887","-924005.616355","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3380","passing","EPSG","4326","EPSG","3380","1.0","-1.0","0.0","-11204516.593448","-852589.955809","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3381","passing","EPSG","4326","EPSG","3381","1.0","-1.0","0.0","-11336929.325475","-1069407.513536","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3382","passing","EPSG","4326","EPSG","3382","1.0","-1.0","0.0","-11053585.993436","-1088495.138159","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3383","passing","EPSG","4326","EPSG","3383","1.0","-1.0","0.0","-11086017.187380","-1152101.093132","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3384","passing","EPSG","4326","EPSG","3384","1.0","-1.0","0.0","-11105918.642758","-898528.707554","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3385","passing","EPSG","4326","EPSG","3385","1.0","-1.0","0.0","-11257161.200343","-1164471.611763","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3386","passing","EPSG","4326","EPSG","3386","1.0","-1.0","0.0","-1420666.507386","-115528.567846","-165.167033","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3387","passing","EPSG","4326","EPSG","3387","1.0","-1.0","0.0","1735808.899892","-130402.822007","-165.167033","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3388","passing","EPSG","4326","EPSG","3388","1.0","-1.0","0.0","-4142520.752562","-82233.758419","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3391","passing","EPSG","4326","EPSG","3391","1.0","-1.0","0.0","-4079273.015666","-140882.641367","-172.547504","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3392","passing","EPSG","4326","EPSG","3392","1.0","-1.0","0.0","-4966891.604922","-154496.951753","-172.547504","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3393","passing","EPSG","4326","EPSG","3393","1.0","-1.0","0.0","-5950724.924159","-173178.469914","-172.547504","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -1486,11 +1486,11 @@ "4326 -> 3396","passing","EPSG","4326","EPSG","3396","1.0","-1.0","0.0","2606757.139676","-111657.546981","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3397","passing","EPSG","4326","EPSG","3397","1.0","-1.0","0.0","3268175.410532","-112647.043075","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3398","passing","EPSG","4326","EPSG","3398","1.0","-1.0","0.0","3268175.410532","-112647.043075","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3399","passing","EPSG","4326","EPSG","3399","1.0","-1.0","0.0","3926105.663731","-113971.626991","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3399","passing","EPSG","4326","EPSG","3399","1.0","-1.0","0.0","3926105.407353","-113971.631576","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3404","passing","EPSG","4326","EPSG","3404","1.0","-1.0","0.0","3.3505846979267E7","-57915.272695","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 3405","passing","EPSG","4326","EPSG","3405","1.0","-1.0","0.0","-1.301902128935E7","-1.9512399777286E7","188.974813","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3406","passing","EPSG","4326","EPSG","3406","1.0","-1.0","0.0","-1.0625788868978E7","-1.9664680833295E7","188.974813","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3407","passing","EPSG","4326","EPSG","3407","1.0","-1.0","0.0","-4.1203006439011E7","-1.027783275293E7","0.0","1.000000","1.000000","1.000000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3407","passing","EPSG","4326","EPSG","3407","1.0","-1.0","0.0","-41177285.201731","-10277832.752930","0.0","1.000000","1.000000","1.000000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3408","passing","EPSG","4326","EPSG","3408","1.0","-1.0","0.0","158617.286076","-9087178.233242","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3409","passing","EPSG","4326","EPSG","3409","1.0","-1.0","0.0","155872.772909","8929945.179252","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3410","passing","EPSG","4326","EPSG","3410","1.0","-1.0","0.0","96301.077465","-128394.917833","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -1503,24 +1503,24 @@ "4326 -> 3418","passing","EPSG","4326","EPSG","3418","1.0","-1.0","0.0","3.760016635244E7","5451910.171954","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 3419","passing","EPSG","4326","EPSG","3419","1.0","-1.0","0.0","3.812819558524E7","6926469.054852","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 3420","passing","EPSG","4326","EPSG","3420","1.0","-1.0","0.0","3.8190467452588E7","8343603.509436","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3424","passing","EPSG","4326","EPSG","3424","1.0","-1.0","0.0","4.1349698805148E7","-1.5298404466869E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3424","passing","EPSG","4326","EPSG","3424","1.0","-1.0","0.0","44077778.712423","-15634150.560445","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3425","passing","EPSG","4326","EPSG","3425","1.0","-1.0","0.0","4.0989927726809E7","8887297.375966","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 3426","passing","EPSG","4326","EPSG","3426","1.0","-1.0","0.0","3.760016635244E7","5451910.171954","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 3427","passing","EPSG","4326","EPSG","3427","1.0","-1.0","0.0","3.812819558524E7","6926469.054852","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 3428","passing","EPSG","4326","EPSG","3428","1.0","-1.0","0.0","3.8190467452588E7","8343603.509436","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3432","passing","EPSG","4326","EPSG","3432","1.0","-1.0","0.0","4.1349698805148E7","-1.5298404466869E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3432","passing","EPSG","4326","EPSG","3432","1.0","-1.0","0.0","44077778.712423","-15634150.560445","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3433","passing","EPSG","4326","EPSG","3433","1.0","-1.0","0.0","3.6521764850117E7","4260391.267194","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 3434","passing","EPSG","4326","EPSG","3434","1.0","-1.0","0.0","3.6419862433268E7","5444886.024408","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3435","passing","EPSG","4326","EPSG","3435","1.0","-1.0","0.0","6.0725757812949E7","-1.547432309973E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3437","passing","EPSG","4326","EPSG","3437","1.0","-1.0","0.0","3.8917488071742E7","-1.6514801281721E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3438","passing","EPSG","4326","EPSG","3438","1.0","-1.0","0.0","3.8097897822019E7","-1.5992514205953E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3435","error","EPSG","4326","EPSG","3435","1.0","-1.0","0.0","6.0725757812949E7","-1.547432309973E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3437","passing","EPSG","4326","EPSG","3437","1.0","-1.0","0.0","40633809.970593","-16704592.121454","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3438","passing","EPSG","4326","EPSG","3438","1.0","-1.0","0.0","39768638.735981","-16176221.233964","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3439","passing","EPSG","4326","EPSG","3439","1.0","-1.0","0.0","-5951307.244793","-173135.917605","-31.060822","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3440","passing","EPSG","4326","EPSG","3440","1.0","-1.0","0.0","-7069119.280717","-199543.780766","-31.060822","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3441","passing","EPSG","4326","EPSG","3441","1.0","-1.0","0.0","3.6521764850117E7","4260391.267194","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 3442","passing","EPSG","4326","EPSG","3442","1.0","-1.0","0.0","3.6419862433268E7","5444886.024408","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3443","passing","EPSG","4326","EPSG","3443","1.0","-1.0","0.0","6.0725757812949E7","-1.547432309973E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3445","passing","EPSG","4326","EPSG","3445","1.0","-1.0","0.0","3.8917488071742E7","-1.6514801281721E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3446","passing","EPSG","4326","EPSG","3446","1.0","-1.0","0.0","3.8097897822019E7","-1.5992514205953E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3443","error","EPSG","4326","EPSG","3443","1.0","-1.0","0.0","6.0725757812949E7","-1.547432309973E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3445","passing","EPSG","4326","EPSG","3445","1.0","-1.0","0.0","40633809.970593","-16704592.121454","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3446","passing","EPSG","4326","EPSG","3446","1.0","-1.0","0.0","39768638.735981","-16176221.233964","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3447","passing","EPSG","4326","EPSG","3447","1.0","-1.0","0.0","-379774.399828","-6308432.30838","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3448","passing","EPSG","4326","EPSG","3448","1.0","-1.0","0.0","9642964.258676","408789.263501","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3450","passing","EPSG","4326","EPSG","3450","1.0","-1.0","0.0","1.4018825807744E7","-484015.283282","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -1535,12 +1535,12 @@ "4326 -> 3459","passing","EPSG","4326","EPSG","3459","1.0","-1.0","0.0","3.9360407080267E7","8781517.394403","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 3461","passing","EPSG","4326","EPSG","3461","1.0","-1.0","0.0","2303871.610992","-115145.195555","-27.599177","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3462","passing","EPSG","4326","EPSG","3462","1.0","-1.0","0.0","1618289.457337","-112373.126559","-27.599177","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3463","passing","EPSG","4326","EPSG","3463","1.0","-1.0","0.0","1.1324154703457E7","-5116571.085152","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3464","passing","EPSG","4326","EPSG","3464","1.0","-1.0","0.0","1.1324154703457E7","-5116571.085152","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3465","passing","EPSG","4326","EPSG","3465","1.0","-1.0","0.0","1.7159919726823E7","-3961313.962369","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3466","passing","EPSG","4326","EPSG","3466","1.0","-1.0","0.0","1.8379967073642E7","-3952167.354801","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3463","passing","EPSG","4326","EPSG","3463","1.0","-1.0","0.0","11671689.678538","-5152007.650725","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3464","passing","EPSG","4326","EPSG","3464","1.0","-1.0","0.0","11671689.678538","-5152007.650725","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3465","error","EPSG","4326","EPSG","3465","1.0","-1.0","0.0","1.7159919726823E7","-3961313.962369","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3466","error","EPSG","4326","EPSG","3466","1.0","-1.0","0.0","1.8379967073642E7","-3952167.354801","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 3467","passing","EPSG","4326","EPSG","3467","1.0","-1.0","0.0","7104914.414304","1.1599667194798E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3468","failing","EPSG","4326","EPSG","3468","1.0","-1.0","0.0","2.1299477541839E7","-9945672.888623","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3468","passing","EPSG","4326","EPSG","3468","1.0","-1.0","0.0","2.1299477541839E7","-9945672.888623","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3477","passing","EPSG","4326","EPSG","3477","1.0","-1.0","0.0","8328717.21702","1.4116821977524E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3484","passing","EPSG","4326","EPSG","3484","1.0","-1.0","0.0","1.1131856190038E7","1298569.855381","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3485","passing","EPSG","4326","EPSG","3485","1.0","-1.0","0.0","3.6521764850117E7","4260391.267194","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" @@ -1567,25 +1567,25 @@ "4326 -> 3506","passing","EPSG","4326","EPSG","3506","1.0","-1.0","0.0","4.1300893148666E7","1.0805178197923E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 3507","passing","EPSG","4326","EPSG","3507","1.0","-1.0","0.0","9609648.833132","-675630.039935","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3508","passing","EPSG","4326","EPSG","3508","1.0","-1.0","0.0","3.152765621337E7","-2216629.556017","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3509","passing","EPSG","4326","EPSG","3509","1.0","-1.0","0.0","1.2960400053583E7","-4584092.979322","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3510","passing","EPSG","4326","EPSG","3510","1.0","-1.0","0.0","4.2520912509465E7","-1.5039645049659E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3511","passing","EPSG","4326","EPSG","3511","1.0","-1.0","0.0","1.5029510779743E7","-3165551.699573","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3512","passing","EPSG","4326","EPSG","3512","1.0","-1.0","0.0","4.9309319950207E7","-1.0385647534347E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3509","passing","EPSG","4326","EPSG","3509","1.0","-1.0","0.0","13929727.098412","-4708319.149141","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3510","passing","EPSG","4326","EPSG","3510","1.0","-1.0","0.0","45701112.989039","-15447210.408475","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3511","error","EPSG","4326","EPSG","3511","1.0","-1.0","0.0","1.5029510779743E7","-3165551.699573","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3512","error","EPSG","4326","EPSG","3512","1.0","-1.0","0.0","4.9309319950207E7","-1.0385647534347E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 3513","passing","EPSG","4326","EPSG","3513","1.0","-1.0","0.0","1.0071974621001E7","811782.97242","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3514","passing","EPSG","4326","EPSG","3514","1.0","-1.0","0.0","1.0550650155667E7","427782.799905","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3515","passing","EPSG","4326","EPSG","3515","1.0","-1.0","0.0","3.461492471905E7","1403484.069356","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3516","passing","EPSG","4326","EPSG","3516","1.0","-1.0","0.0","1.5442048203015E7","-3186367.239404","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3517","passing","EPSG","4326","EPSG","3517","1.0","-1.0","0.0","5.0662786479725E7","-1.0453939851278E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3518","passing","EPSG","4326","EPSG","3518","1.0","-1.0","0.0","1.5511530289253E7","-3817662.34613","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3519","passing","EPSG","4326","EPSG","3519","1.0","-1.0","0.0","5.0890745624323E7","-1.2525113880594E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3520","passing","EPSG","4326","EPSG","3520","1.0","-1.0","0.0","1.6884448431364E7","-3863405.498204","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3521","passing","EPSG","4326","EPSG","3521","1.0","-1.0","0.0","5.5395061228234E7","-1.2675189538692E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3528","passing","EPSG","4326","EPSG","3528","1.0","-1.0","0.0","1.8509247999883E7","-4716583.113964","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3529","passing","EPSG","4326","EPSG","3529","1.0","-1.0","0.0","6.0725757812949E7","-1.547432309973E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3532","passing","EPSG","4326","EPSG","3532","1.0","-1.0","0.0","1.6980563567191E7","-4483369.918208","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3533","passing","EPSG","4326","EPSG","3533","1.0","-1.0","0.0","5.5710398969693E7","-1.4709189473654E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3534","passing","EPSG","4326","EPSG","3534","1.0","-1.0","0.0","1.8470937971857E7","-4522155.488717","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3535","passing","EPSG","4326","EPSG","3535","1.0","-1.0","0.0","6.0600068996002E7","-1.4836438466231E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3516","error","EPSG","4326","EPSG","3516","1.0","-1.0","0.0","1.5442048203015E7","-3186367.239404","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3517","error","EPSG","4326","EPSG","3517","1.0","-1.0","0.0","5.0662786479725E7","-1.0453939851278E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3518","error","EPSG","4326","EPSG","3518","1.0","-1.0","0.0","1.5511530289253E7","-3817662.34613","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3519","error","EPSG","4326","EPSG","3519","1.0","-1.0","0.0","5.0890745624323E7","-1.2525113880594E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3520","error","EPSG","4326","EPSG","3520","1.0","-1.0","0.0","1.6884448431364E7","-3863405.498204","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3521","error","EPSG","4326","EPSG","3521","1.0","-1.0","0.0","5.5395061228234E7","-1.2675189538692E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3528","error","EPSG","4326","EPSG","3528","1.0","-1.0","0.0","1.8509247999883E7","-4716583.113964","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3529","error","EPSG","4326","EPSG","3529","1.0","-1.0","0.0","6.0725757812949E7","-1.547432309973E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3532","error","EPSG","4326","EPSG","3532","1.0","-1.0","0.0","1.6980563567191E7","-4483369.918208","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3533","error","EPSG","4326","EPSG","3533","1.0","-1.0","0.0","5.5710398969693E7","-1.4709189473654E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3534","error","EPSG","4326","EPSG","3534","1.0","-1.0","0.0","1.8470937971857E7","-4522155.488717","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3535","error","EPSG","4326","EPSG","3535","1.0","-1.0","0.0","6.0600068996002E7","-1.4836438466231E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 3536","passing","EPSG","4326","EPSG","3536","1.0","-1.0","0.0","1.2493754958641E7","2708853.657912","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3537","passing","EPSG","4326","EPSG","3537","1.0","-1.0","0.0","4.0989927726809E7","8887297.375966","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 3538","passing","EPSG","4326","EPSG","3538","1.0","-1.0","0.0","1.1460553625321E7","1661745.543903","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -1604,11 +1604,11 @@ "4326 -> 3551","passing","EPSG","4326","EPSG","3551","1.0","-1.0","0.0","3.8398005554391E7","4076115.015849","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 3552","passing","EPSG","4326","EPSG","3552","1.0","-1.0","0.0","1.1569510967566E7","1074486.392019","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3553","passing","EPSG","4326","EPSG","3553","1.0","-1.0","0.0","3.7957637232722E7","3525210.77115","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3554","passing","EPSG","4326","EPSG","3554","1.0","-1.0","0.0","1.1324154703457E7","-5116571.085152","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3555","passing","EPSG","4326","EPSG","3555","1.0","-1.0","0.0","1.1180772997795E7","-5141094.694271","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3556","passing","EPSG","4326","EPSG","3556","1.0","-1.0","0.0","1.1480217073422E7","-5055926.342392","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3557","passing","EPSG","4326","EPSG","3557","1.0","-1.0","0.0","1.0950069857247E7","-5128313.037419","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3558","passing","EPSG","4326","EPSG","3558","1.0","-1.0","0.0","1.2019814649506E7","-5053556.85185","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3554","passing","EPSG","4326","EPSG","3554","1.0","-1.0","0.0","11671689.678538","-5152007.650725","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3555","passing","EPSG","4326","EPSG","3555","1.0","-1.0","0.0","11465183.093366","-5169053.574542","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3556","passing","EPSG","4326","EPSG","3556","1.0","-1.0","0.0","11905005.691833","-5100943.641776","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3557","passing","EPSG","4326","EPSG","3557","1.0","-1.0","0.0","11264435.163777","-5159779.714468","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3558","passing","EPSG","4326","EPSG","3558","1.0","-1.0","0.0","12430605.282352","-5096804.786367","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3559","passing","EPSG","4326","EPSG","3559","1.0","-1.0","0.0","9969626.935369","-276195.787551","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3560","passing","EPSG","4326","EPSG","3560","1.0","-1.0","0.0","4.071699395223E7","1.6435163577902E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 3566","passing","EPSG","4326","EPSG","3566","1.0","-1.0","0.0","4.0828271383539E7","1.9541430678661E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" @@ -1642,23 +1642,23 @@ "4326 -> 3594","passing","EPSG","4326","EPSG","3594","1.0","-1.0","0.0","1.192601192142E7","2053668.621498","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3595","passing","EPSG","4326","EPSG","3595","1.0","-1.0","0.0","1.190460508534E7","1937737.131019","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3596","passing","EPSG","4326","EPSG","3596","1.0","-1.0","0.0","1.1867181831423E7","1975209.580327","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3597","passing","EPSG","4326","EPSG","3597","1.0","-1.0","0.0","1.8772001648449E7","-3937156.383224","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3598","passing","EPSG","4326","EPSG","3598","1.0","-1.0","0.0","6.1587808741621E7","-1.2917153900627E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3597","error","EPSG","4326","EPSG","3597","1.0","-1.0","0.0","1.8772001648449E7","-3937156.383224","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3598","error","EPSG","4326","EPSG","3598","1.0","-1.0","0.0","6.1587808741621E7","-1.2917153900627E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 3604","passing","EPSG","4326","EPSG","3604","1.0","-1.0","0.0","1.2324918268659E7","4366651.863837","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3605","passing","EPSG","4326","EPSG","3605","1.0","-1.0","0.0","4.0436083558584E7","1.432628564251E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 3606","passing","EPSG","4326","EPSG","3606","1.0","-1.0","0.0","1.1859582682383E7","2563845.950141","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3613","passing","EPSG","4326","EPSG","3613","1.0","-1.0","0.0","1.1862074088415E7","-5033721.498112","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3614","passing","EPSG","4326","EPSG","3614","1.0","-1.0","0.0","3.8917488071742E7","-1.6514801281721E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3615","passing","EPSG","4326","EPSG","3615","1.0","-1.0","0.0","1.2603413402636E7","-4662963.007428","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3616","passing","EPSG","4326","EPSG","3616","1.0","-1.0","0.0","4.1349698805148E7","-1.5298404466869E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3623","passing","EPSG","4326","EPSG","3623","1.0","-1.0","0.0","1.3411859131067E7","-4823650.932015","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3624","passing","EPSG","4326","EPSG","3624","1.0","-1.0","0.0","4.4002074498844E7","-1.5825594766119E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3625","passing","EPSG","4326","EPSG","3625","1.0","-1.0","0.0","1.2603413402636E7","-4662963.007428","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3626","passing","EPSG","4326","EPSG","3626","1.0","-1.0","0.0","4.1349698805148E7","-1.5298404466869E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3613","passing","EPSG","4326","EPSG","3613","1.0","-1.0","0.0","12385210.049457","-5091569.861759","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3614","passing","EPSG","4326","EPSG","3614","1.0","-1.0","0.0","40633809.970593","-16704592.121454","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3615","passing","EPSG","4326","EPSG","3615","1.0","-1.0","0.0","13434933.821414","-4765298.621421","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3616","passing","EPSG","4326","EPSG","3616","1.0","-1.0","0.0","44077778.712423","-15634150.560445","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3623","passing","EPSG","4326","EPSG","3623","1.0","-1.0","0.0","14594179.389600","-4984192.934623","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3624","passing","EPSG","4326","EPSG","3624","1.0","-1.0","0.0","47881070.213714","-16352306.319676","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3625","passing","EPSG","4326","EPSG","3625","1.0","-1.0","0.0","13434933.821414","-4765298.621421","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3626","passing","EPSG","4326","EPSG","3626","1.0","-1.0","0.0","44077778.712423","-15634150.560445","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3627","passing","EPSG","4326","EPSG","3627","1.0","-1.0","0.0","9687036.766689","-681351.175466","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3628","passing","EPSG","4326","EPSG","3628","1.0","-1.0","0.0","3.1781553125378E7","-2235399.648173","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3629","passing","EPSG","4326","EPSG","3629","1.0","-1.0","0.0","1.4237282921893E7","-4857039.255734","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3630","passing","EPSG","4326","EPSG","3630","1.0","-1.0","0.0","4.6710152386576E7","-1.5935136291522E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3629","passing","EPSG","4326","EPSG","3629","1.0","-1.0","0.0","15922864.775165","-5116346.421875","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3630","passing","EPSG","4326","EPSG","3630","1.0","-1.0","0.0","52240265.516853","-16785879.885769","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3631","passing","EPSG","4326","EPSG","3631","1.0","-1.0","0.0","1.0212602585283E7","-17652.610423","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3632","passing","EPSG","4326","EPSG","3632","1.0","-1.0","0.0","3.3505846979267E7","-57915.272695","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 3633","passing","EPSG","4326","EPSG","3633","1.0","-1.0","0.0","1.2048562892627E7","2902217.376716","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -1681,8 +1681,8 @@ "4326 -> 3650","passing","EPSG","4326","EPSG","3650","1.0","-1.0","0.0","3.3966386502944E7","-702622.902526","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 3651","passing","EPSG","4326","EPSG","3651","1.0","-1.0","0.0","1.0308283550952E7","-220512.975756","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3652","passing","EPSG","4326","EPSG","3652","1.0","-1.0","0.0","3.3819760283415E7","-723466.321292","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3653","passing","EPSG","4326","EPSG","3653","1.0","-1.0","0.0","1.1612262480686E7","-4874528.079031","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3654","passing","EPSG","4326","EPSG","3654","1.0","-1.0","0.0","3.8097897822019E7","-1.5992514205953E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3653","passing","EPSG","4326","EPSG","3653","1.0","-1.0","0.0","12121505.329748","-4930522.093156","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3654","passing","EPSG","4326","EPSG","3654","1.0","-1.0","0.0","39768638.735981","-16176221.233964","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3655","passing","EPSG","4326","EPSG","3655","1.0","-1.0","0.0","1.0339890150895E7","211156.727684","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3656","passing","EPSG","4326","EPSG","3656","1.0","-1.0","0.0","3.3923524117109E7","692771.416287","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 3657","passing","EPSG","4326","EPSG","3657","1.0","-1.0","0.0","1.1994495041044E7","2695771.443861","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -1712,7 +1712,7 @@ "4326 -> 3681","passing","EPSG","4326","EPSG","3681","1.0","-1.0","0.0","1.2495636574632E7","6739176.857568","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3682","passing","EPSG","4326","EPSG","3682","1.0","-1.0","0.0","4.0996182988131E7","2.2110160293819E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 3683","passing","EPSG","4326","EPSG","3683","1.0","-1.0","0.0","4.0996100995305E7","2.2110116073538E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3684","passing","EPSG","4326","EPSG","3684","1.0","-1.0","0.0","1.2316477845608E7","-5043906.115058","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3684","passing","EPSG","4326","EPSG","3684","1.0","-1.0","0.0","12915305.224043","-5112088.044691","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3685","passing","EPSG","4326","EPSG","3685","1.0","-1.0","0.0","1.319415649693E7","1855008.196457","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3686","passing","EPSG","4326","EPSG","3686","1.0","-1.0","0.0","4.3287828440678E7","6085972.724876","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 3687","passing","EPSG","4326","EPSG","3687","1.0","-1.0","0.0","1.3141710050315E7","871305.38436","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -1748,7 +1748,7 @@ "4326 -> 3722","passing","EPSG","4326","EPSG","3722","1.0","-1.0","0.0","9821617.197798","-6559044.245001","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3725","passing","EPSG","4326","EPSG","3725","1.0","-1.0","0.0","1.4018825808604E7","-484015.283423","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3726","passing","EPSG","4326","EPSG","3726","1.0","-1.0","0.0","1.1625664379252E7","-331585.409964","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3727","passing","EPSG","4326","EPSG","3727","1.0","-1.0","0.0","-7096044.688947","2198192.870905","-350.230773","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3727","passing","EPSG","4326","EPSG","3727","1.0","-1.0","0.0","-7122048.036772","2196422.714975","-350.230773","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3728","passing","EPSG","4326","EPSG","3728","1.0","-1.0","0.0","3.5236544369481E7","1138594.473223","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 3729","passing","EPSG","4326","EPSG","3729","1.0","-1.0","0.0","3.501748094889E7","1106290.514849","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 3734","passing","EPSG","4326","EPSG","3734","1.0","-1.0","0.0","3.5236544369481E7","1138594.473223","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" @@ -1763,23 +1763,23 @@ "4326 -> 3749","passing","EPSG","4326","EPSG","3749","1.0","-1.0","0.0","1.1625664379252E7","-331585.409964","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3750","passing","EPSG","4326","EPSG","3750","1.0","-1.0","0.0","2772080.292418","-1.9878255185912E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3751","passing","EPSG","4326","EPSG","3751","1.0","-1.0","0.0","3498135.612029","-1.9872858071015E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3752","failing","EPSG","4326","EPSG","3752","1.0","-1.0","0.0","-8329383.326293","-83576.252259","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3752","passing","EPSG","4326","EPSG","3752","1.0","-1.0","0.0","-8329383.326293","-83576.252259","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3753","passing","EPSG","4326","EPSG","3753","1.0","-1.0","0.0","3.5236544369481E7","1138594.473223","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 3754","passing","EPSG","4326","EPSG","3754","1.0","-1.0","0.0","3.501748094889E7","1106290.514849","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 3761","passing","EPSG","4326","EPSG","3761","1.0","-1.0","0.0","7306321.314799","-180502.818931","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3762","passing","EPSG","4326","EPSG","3762","1.0","-1.0","0.0","5809003.535605","5199654.422028","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3763","passing","EPSG","4326","EPSG","3763","1.0","-1.0","0.0","1020898.463971","-4504698.955861","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3765","passing","EPSG","4326","EPSG","3765","1.0","-1.0","0.0","-1246587.886701","-114765.074053","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3765","passing","EPSG","4326","EPSG","3765","1.0","-1.0","0.0","-1246588.438940","-114765.084839","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3766","passing","EPSG","4326","EPSG","3766","1.0","-1.0","0.0","-2272729.916529","70497.816636","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3767","passing","EPSG","4326","EPSG","3767","1.0","-1.0","0.0","-1073447.882706","-113937.036743","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3768","passing","EPSG","4326","EPSG","3768","1.0","-1.0","0.0","-1772080.292418","-117674.699966","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3769","passing","EPSG","4326","EPSG","3769","1.0","-1.0","0.0","9876386.508615","-256414.16385","5.109948","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3770","passing","EPSG","4326","EPSG","3770","1.0","-1.0","0.0","1.0223626363891E7","-3700028.460869","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3770","passing","EPSG","4326","EPSG","3770","1.0","-1.0","0.0","10395671.956683","-3715563.616001","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3784","passing","EPSG","4326","EPSG","3784","1.0","-1.0","0.0","6951540.801686","-9823727.980821","-438.059886","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3785","passing","EPSG","4326","EPSG","3785","1.0","-1.0","0.0","111319.490793","-111325.142866","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3786","passing","EPSG","4326","EPSG","3786","1.0","-1.0","0.0","111195.048818","-111195.048818","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3787","passing","EPSG","4326","EPSG","3787","1.0","-1.0","0.0","-1073989.157328","-5114403.337438","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3794","passing","EPSG","4326","EPSG","3794","1.0","-1.0","0.0","-1073919.848947","-5113971.226934","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3787","passing","EPSG","4326","EPSG","3787","1.0","-1.0","0.0","-1073989.413973","-5114403.342046","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3794","passing","EPSG","4326","EPSG","3794","1.0","-1.0","0.0","-1073920.105960","-5113971.231532","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3795","passing","EPSG","4326","EPSG","3795","1.0","-1.0","0.0","9909423.319025","252007.642094","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3796","passing","EPSG","4326","EPSG","3796","1.0","-1.0","0.0","9435601.846977","-40741.536432","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3797","passing","EPSG","4326","EPSG","3797","1.0","-1.0","0.0","1.0212385118881E7","-957349.19127","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -1790,49 +1790,49 @@ "4326 -> 3832","passing","EPSG","4326","EPSG","3832","1.0","-1.0","0.0","-1.6586604128198E7","-110579.965222","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3833","passing","EPSG","4326","EPSG","3833","1.0","-1.0","0.0","1606760.604609","-111594.833491","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3834","passing","EPSG","4326","EPSG","3834","1.0","-1.0","0.0","1606760.774275","-111591.535738","-133.241138","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3835","passing","EPSG","4326","EPSG","3835","1.0","-1.0","0.0","1926020.936157","-113904.057349","-133.241138","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3836","passing","EPSG","4326","EPSG","3836","1.0","-1.0","0.0","2227104.85351","-117640.283083","-133.241138","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3835","passing","EPSG","4326","EPSG","3835","1.0","-1.0","0.0","1926020.679291","-113904.061940","-133.241138","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3836","passing","EPSG","4326","EPSG","3836","1.0","-1.0","0.0","2227100.829890","-117640.381626","-133.241138","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3837","passing","EPSG","4326","EPSG","3837","1.0","-1.0","0.0","2606760.604609","-111594.833491","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3838","passing","EPSG","4326","EPSG","3838","1.0","-1.0","0.0","3268134.781191","-112583.677635","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3839","passing","EPSG","4326","EPSG","3839","1.0","-1.0","0.0","6500782.72258","-123038.185131","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3840","passing","EPSG","4326","EPSG","3840","1.0","-1.0","0.0","7124010.295154","-126465.617859","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3841","passing","EPSG","4326","EPSG","3841","1.0","-1.0","0.0","4579379.604011","-115582.188592","-133.241138","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3842","passing","EPSG","4326","EPSG","3842","1.0","-1.0","0.0","4579379.604011","-115582.188592","-133.241138","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3843","passing","EPSG","4326","EPSG","3843","1.0","-1.0","0.0","4579379.604011","-115582.188592","-133.241138","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3839","passing","EPSG","4326","EPSG","3839","1.0","-1.0","0.0","6500748.287266","-123039.262143","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3840","passing","EPSG","4326","EPSG","3840","1.0","-1.0","0.0","7123923.639255","-126468.629543","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3841","passing","EPSG","4326","EPSG","3841","1.0","-1.0","0.0","4579378.483263","-115582.212314","-133.241138","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3842","passing","EPSG","4326","EPSG","3842","1.0","-1.0","0.0","4579378.483263","-115582.212314","-133.241138","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3843","passing","EPSG","4326","EPSG","3843","1.0","-1.0","0.0","4579378.483263","-115582.212314","-133.241138","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3844","passing","EPSG","4326","EPSG","3844","1.0","-1.0","0.0","-2695051.2727101063","-4732427.223842377","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3845","passing","EPSG","4326","EPSG","3845","1.0","-1.0","0.0","346630.009595","-113067.806865","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3846","passing","EPSG","4326","EPSG","3846","1.0","-1.0","0.0","91097.358672","-113969.952784","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3847","passing","EPSG","4326","EPSG","3847","1.0","-1.0","0.0","-166695.554365","-115066.540948","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3848","passing","EPSG","4326","EPSG","3848","1.0","-1.0","0.0","-427196.876156","-116366.570812","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3849","passing","EPSG","4326","EPSG","3849","1.0","-1.0","0.0","-690877.641131","-117881.379856","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3850","passing","EPSG","4326","EPSG","3850","1.0","-1.0","0.0","-958235.593013","-119623.572799","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3846","passing","EPSG","4326","EPSG","3846","1.0","-1.0","0.0","91097.243144","-113969.954667","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3847","passing","EPSG","4326","EPSG","3847","1.0","-1.0","0.0","-166695.945083","-115066.548282","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3848","passing","EPSG","4326","EPSG","3848","1.0","-1.0","0.0","-427198.026624","-116366.595254","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3849","passing","EPSG","4326","EPSG","3849","1.0","-1.0","0.0","-690880.680458","-117881.452002","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3850","passing","EPSG","4326","EPSG","3850","1.0","-1.0","0.0","-958242.949009","-119623.765906","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3851","passing","EPSG","4326","EPSG","3851","1.0","-1.0","0.0","-8148952.645054","-5042117.961906","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3852","passing","EPSG","4326","EPSG","3852","1.0","-1.0","0.0","-5036241.277593","-1.0682710449249E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3854","passing","EPSG","4326","EPSG","3854","1.0","-1.0","0.0","-1827260.56494","-6616317.630857","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3854","passing","EPSG","4326","EPSG","3854","1.0","-1.0","0.0","-1827261.716216","-6616317.655318","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3857","passing","EPSG","4326","EPSG","3857","1.0","-1.0","0.0","111319.490793","-111325.142866","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3873","passing","EPSG","4326","EPSG","3873","1.0","-1.0","0.0","1.7462544717458E7","-116304.889832","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3874","passing","EPSG","4326","EPSG","3874","1.0","-1.0","0.0","1.8345135741589E7","-116991.03987","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3875","passing","EPSG","4326","EPSG","3875","1.0","-1.0","0.0","1.9227014537391E7","-117721.690014","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3876","passing","EPSG","4326","EPSG","3876","1.0","-1.0","0.0","2.0108135842801E7","-118498.134892","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3877","passing","EPSG","4326","EPSG","3877","1.0","-1.0","0.0","2.0988453089597E7","-119321.76978","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3878","passing","EPSG","4326","EPSG","3878","1.0","-1.0","0.0","2.1867918310647E7","-120194.096558","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3879","passing","EPSG","4326","EPSG","3879","1.0","-1.0","0.0","2.2746482043132E7","-121116.730153","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3880","passing","EPSG","4326","EPSG","3880","1.0","-1.0","0.0","2.3624093227569E7","-122091.405505","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3881","passing","EPSG","4326","EPSG","3881","1.0","-1.0","0.0","2.4500699102425E7","-123119.985081","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3882","passing","EPSG","4326","EPSG","3882","1.0","-1.0","0.0","2.5376245094154E7","-124204.466965","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3883","passing","EPSG","4326","EPSG","3883","1.0","-1.0","0.0","2.6250674702436E7","-125346.993562","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3884","passing","EPSG","4326","EPSG","3884","1.0","-1.0","0.0","2.7123929380454E7","-126549.860952","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3885","passing","EPSG","4326","EPSG","3885","1.0","-1.0","0.0","2.7995948410008E7","-127815.528912","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3873","passing","EPSG","4326","EPSG","3873","1.0","-1.0","0.0","17462542.967733","-116304.928830","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3874","passing","EPSG","4326","EPSG","3874","1.0","-1.0","0.0","18345133.063989","-116991.102518","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3875","passing","EPSG","4326","EPSG","3875","1.0","-1.0","0.0","19227010.511786","-117721.788681","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3876","passing","EPSG","4326","EPSG","3876","1.0","-1.0","0.0","20108129.887897","-118498.287502","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3877","passing","EPSG","4326","EPSG","3877","1.0","-1.0","0.0","20988444.411111","-119322.001934","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3878","passing","EPSG","4326","EPSG","3878","1.0","-1.0","0.0","21867905.835705","-120194.444343","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3879","passing","EPSG","4326","EPSG","3879","1.0","-1.0","0.0","22746464.337908","-121117.243828","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3880","passing","EPSG","4326","EPSG","3880","1.0","-1.0","0.0","23624068.394652","-122092.154283","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3881","passing","EPSG","4326","EPSG","3881","1.0","-1.0","0.0","24500664.653832","-123121.063287","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3882","passing","EPSG","4326","EPSG","3882","1.0","-1.0","0.0","25376197.795190","-124206.001913","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3883","passing","EPSG","4326","EPSG","3883","1.0","-1.0","0.0","26250610.380858","-125349.155547","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3884","passing","EPSG","4326","EPSG","3884","1.0","-1.0","0.0","27123842.694496","-126552.875849","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3885","passing","EPSG","4326","EPSG","3885","1.0","-1.0","0.0","27995832.567796","-127819.693982","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3890","passing","EPSG","4326","EPSG","3890","1.0","-1.0","0.0","-4079577.277109","-140545.733763","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3891","passing","EPSG","4326","EPSG","3891","1.0","-1.0","0.0","-4967185.609991","-154126.257162","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3892","passing","EPSG","4326","EPSG","3892","1.0","-1.0","0.0","-5950996.913984","-172760.344418","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3893","passing","EPSG","4326","EPSG","3893","1.0","-1.0","0.0","-4897184.884493","-3368070.993179","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3907","passing","EPSG","4326","EPSG","3907","1.0","-1.0","0.0","3926486.719953","-114463.737913","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3908","passing","EPSG","4326","EPSG","3908","1.0","-1.0","0.0","4579928.424768","-116149.979133","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3909","passing","EPSG","4326","EPSG","3909","1.0","-1.0","0.0","5227738.513893","-118218.032798","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3910","passing","EPSG","4326","EPSG","3910","1.0","-1.0","0.0","5868725.833913","-120700.55189","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3911","passing","EPSG","4326","EPSG","3911","1.0","-1.0","0.0","-1073513.280047","-114463.737913","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3912","passing","EPSG","4326","EPSG","3912","1.0","-1.0","0.0","-1073513.280047","-5114463.737913","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3893","passing","EPSG","4326","EPSG","3893","1.0","-1.0","0.0","-4901882.784651","-3368331.545911","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3907","passing","EPSG","4326","EPSG","3907","1.0","-1.0","0.0","3926486.463874","-114463.742512","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3908","passing","EPSG","4326","EPSG","3908","1.0","-1.0","0.0","4579927.306936","-116150.002910","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3909","passing","EPSG","4326","EPSG","3909","1.0","-1.0","0.0","5227734.499283","-118218.131606","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3910","passing","EPSG","4326","EPSG","3910","1.0","-1.0","0.0","5868713.388738","-120700.900306","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3911","passing","EPSG","4326","EPSG","3911","1.0","-1.0","0.0","-1073513.536126","-114463.742512","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3912","passing","EPSG","4326","EPSG","3912","1.0","-1.0","0.0","-1073513.536126","-5114463.742512","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3920","passing","EPSG","4326","EPSG","3920","1.0","-1.0","0.0","9876749.365363","-255512.402828","-83.342424","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3942","passing","EPSG","4326","EPSG","3942","1.0","-1.0","0.0","1412832.128905","-3998630.413755","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3943","passing","EPSG","4326","EPSG","3943","1.0","-1.0","0.0","1409735.4672","-3140533.790692","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -1853,57 +1853,57 @@ "4326 -> 3978","passing","EPSG","4326","EPSG","3978","1.0","-1.0","0.0","1.1394567715938E7","3952432.439572","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3979","passing","EPSG","4326","EPSG","3979","1.0","-1.0","0.0","1.1394567715938E7","3952432.439572","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3985","passing","EPSG","4326","EPSG","3985","1.0","-1.0","0.0","-2304750.582227","-730302.277769","30.092356","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3986","passing","EPSG","4326","EPSG","3986","1.0","-1.0","0.0","-3176113.454225","1368929.91839","30.092356","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3987","passing","EPSG","4326","EPSG","3987","1.0","-1.0","0.0","-2923792.328007","1371270.110892","30.092356","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3988","passing","EPSG","4326","EPSG","3988","1.0","-1.0","0.0","-2675939.252943","1373378.476771","30.092356","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3989","passing","EPSG","4326","EPSG","3989","1.0","-1.0","0.0","-2432109.642908","1375271.561756","30.092356","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3986","passing","EPSG","4326","EPSG","3986","1.0","-1.0","0.0","-3176200.482418","1368926.897021","30.092356","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3987","passing","EPSG","4326","EPSG","3987","1.0","-1.0","0.0","-2923839.832678","1371268.571981","30.092356","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3988","passing","EPSG","4326","EPSG","3988","1.0","-1.0","0.0","-2675964.205386","1373377.725684","30.092356","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 3989","passing","EPSG","4326","EPSG","3989","1.0","-1.0","0.0","-2432122.184612","1375271.212695","30.092356","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3991","passing","EPSG","4326","EPSG","3991","1.0","-1.0","0.0","2.5932986842E7","-2227434.883598","-273.432602","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 3992","passing","EPSG","4326","EPSG","3992","1.0","-1.0","0.0","2.5932986842E7","-2127434.883598","-273.432602","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3994","failing","EPSG","4326","EPSG","3994","1.0","-1.0","0.0","-8329383.326293","-83576.252259","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3994","passing","EPSG","4326","EPSG","3994","1.0","-1.0","0.0","-8329383.326293","-83576.252259","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3995","passing","EPSG","4326","EPSG","3995","1.0","-1.0","0.0","219615.559737","-1.2581766990871E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3996","passing","EPSG","4326","EPSG","3996","1.0","-1.0","0.0","221917.836456","-1.2713664335751E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3997","passing","EPSG","4326","EPSG","3997","1.0","-1.0","0.0","-6719680.364671","-189140.349577","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4026","passing","EPSG","4326","EPSG","4026","1.0","-1.0","0.0","-2973655.434306","-5124646.907941","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3997","passing","EPSG","4326","EPSG","3997","1.0","-1.0","0.0","-6744791.175243","-190861.610505","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4026","passing","EPSG","4326","EPSG","4026","1.0","-1.0","0.0","-2973708.978622","-5124648.670364","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 4037","passing","EPSG","4326","EPSG","4037","1.0","-1.0","0.0","-2498135.612025","-123071.814866","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 4038","passing","EPSG","4326","EPSG","4038","1.0","-1.0","0.0","-3262671.408962","-130501.513836","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 4048","passing","EPSG","4326","EPSG","4048","1.0","-1.0","0.0","-731844.457385","9887353.380192","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4049","passing","EPSG","4326","EPSG","4049","1.0","-1.0","0.0","-959444.220971","9886508.632123","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4050","passing","EPSG","4326","EPSG","4050","1.0","-1.0","0.0","-1188897.947639","9885509.558759","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4051","passing","EPSG","4326","EPSG","4051","1.0","-1.0","0.0","-1420522.418716","9884349.525781","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4056","passing","EPSG","4326","EPSG","4056","1.0","-1.0","0.0","-1654648.771985","9883020.659234","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4057","passing","EPSG","4326","EPSG","4057","1.0","-1.0","0.0","-1891624.970783","9881513.714922","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4058","passing","EPSG","4326","EPSG","4058","1.0","-1.0","0.0","-2131818.481185","9879817.922851","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4059","passing","EPSG","4326","EPSG","4059","1.0","-1.0","0.0","-2375619.181754","9877920.803636","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4060","passing","EPSG","4326","EPSG","4060","1.0","-1.0","0.0","-2623442.530355","9875807.953482","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 4049","passing","EPSG","4326","EPSG","4049","1.0","-1.0","0.0","-959444.369764","9886508.629625","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4050","passing","EPSG","4326","EPSG","4050","1.0","-1.0","0.0","-1188898.378504","9885509.550579","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4051","passing","EPSG","4326","EPSG","4051","1.0","-1.0","0.0","-1420523.539990","9884349.502029","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4056","passing","EPSG","4326","EPSG","4056","1.0","-1.0","0.0","-1654651.449318","9883020.596592","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4057","passing","EPSG","4326","EPSG","4057","1.0","-1.0","0.0","-1891630.925092","9881513.562327","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4058","passing","EPSG","4326","EPSG","4058","1.0","-1.0","0.0","-2131830.954878","9879817.575101","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4059","passing","EPSG","4326","EPSG","4059","1.0","-1.0","0.0","-2375644.012187","9877920.054932","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4060","passing","EPSG","4326","EPSG","4060","1.0","-1.0","0.0","-2623489.824590","9875806.418687","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 4061","passing","EPSG","4326","EPSG","4061","1.0","-1.0","0.0","-1073447.882706","9886062.963257","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 4062","passing","EPSG","4326","EPSG","4062","1.0","-1.0","0.0","-1772080.292418","9882325.300034","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 4063","passing","EPSG","4326","EPSG","4063","1.0","-1.0","0.0","-2498135.612029","9876928.185138","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 4071","passing","EPSG","4326","EPSG","4071","1.0","-1.0","0.0","6282790.621371","9840373.458178","-111.973012","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 4082","passing","EPSG","4326","EPSG","4082","1.0","-1.0","0.0","3010550.966654","-119274.273133","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 4083","passing","EPSG","4326","EPSG","4083","1.0","-1.0","0.0","2303877.831952","-115015.371832","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4087","passing","EPSG","4326","EPSG","4087","1.0","-1.0","0.0","111319.490793","-111319.490793","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 4087","passing","EPSG","4326","EPSG","4087","1.0","-1.0","0.0","111319.490800","-110574.388600","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed for the ellipsoidal Equidistant Cylindrical (EPSG:1028), the method EPSG defines for this CRS and that PROJ implements from 9.8.0; verified against PROJ's own test/gie/builtins.gie expectations" "4326 -> 4088","passing","EPSG","4326","EPSG","4088","1.0","-1.0","0.0","111195.048818","-111195.048818","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 4093","passing","EPSG","4326","EPSG","4093","1.0","-1.0","0.0","-693328.681092","-5111666.040474","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 4094","passing","EPSG","4326","EPSG","4094","1.0","-1.0","0.0","-605874.418081","-5111959.650981","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 4095","passing","EPSG","4326","EPSG","4095","1.0","-1.0","0.0","-603605.841381","-5112560.596566","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4096","passing","EPSG","4326","EPSG","4096","1.0","-1.0","0.0","-774077.256672","-5113982.625197","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4390","passing","EPSG","4326","EPSG","4390","1.0","-1.0","0.0","-1.1415405489461E7","-754653.797546","829.172201","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4391","passing","EPSG","4326","EPSG","4391","1.0","-1.0","0.0","-1.1235086831959E7","-809239.345803","829.172201","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4392","passing","EPSG","4326","EPSG","4392","1.0","-1.0","0.0","-1.1289962281017E7","-924861.569995","829.172201","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4393","passing","EPSG","4326","EPSG","4393","1.0","-1.0","0.0","-1.1208400816847E7","-854052.851519","829.172201","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4394","passing","EPSG","4326","EPSG","4394","1.0","-1.0","0.0","-1.1341074183046E7","-1067202.684921","829.172201","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4395","passing","EPSG","4326","EPSG","4395","1.0","-1.0","0.0","-1.1057220462644E7","-1088522.462177","829.172201","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4396","passing","EPSG","4326","EPSG","4396","1.0","-1.0","0.0","-1.1089701244646E7","-1152132.312318","829.172201","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4397","passing","EPSG","4326","EPSG","4397","1.0","-1.0","0.0","-1.110965048644E7","-898554.427085","829.172201","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4398","passing","EPSG","4326","EPSG","4398","1.0","-1.0","0.0","-1.1261136274144E7","-1163015.486477","829.172201","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 4096","passing","EPSG","4326","EPSG","4096","1.0","-1.0","0.0","-774077.513711","-5113982.629795","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4390","passing","EPSG","4326","EPSG","4390","1.0","-1.0","0.0","-11410614.222541","-754653.797546","829.172201","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4391","passing","EPSG","4326","EPSG","4391","1.0","-1.0","0.0","-11230662.516299","-809239.345803","829.172201","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4392","passing","EPSG","4326","EPSG","4392","1.0","-1.0","0.0","-11285428.421250","-924861.569995","829.172201","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4393","passing","EPSG","4326","EPSG","4393","1.0","-1.0","0.0","-11204070.560069","-854052.851519","829.172201","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4394","passing","EPSG","4326","EPSG","4394","1.0","-1.0","0.0","-11336436.812780","-1067202.684921","829.172201","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4395","passing","EPSG","4326","EPSG","4395","1.0","-1.0","0.0","-11053134.859106","-1088522.462177","829.172201","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4396","passing","EPSG","4326","EPSG","4396","1.0","-1.0","0.0","-11085555.306429","-1152132.312318","829.172201","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4397","passing","EPSG","4326","EPSG","4397","1.0","-1.0","0.0","-11105467.139855","-898554.427085","829.172201","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4398","passing","EPSG","4326","EPSG","4398","1.0","-1.0","0.0","-11256659.972229","-1163015.486477","829.172201","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 4415","passing","EPSG","4326","EPSG","4415","1.0","-1.0","0.0","-2304750.582227","1291098.33461","30.092356","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4417","passing","EPSG","4326","EPSG","4417","1.0","-1.0","0.0","5227104.85351","-117640.283083","-133.241138","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4418","passing","EPSG","4326","EPSG","4418","1.0","-1.0","0.0","4.3031005718586E7","-1215260.363307","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4419","passing","EPSG","4326","EPSG","4419","1.0","-1.0","0.0","3.7026083079511E7","-974432.050519","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4434","passing","EPSG","4326","EPSG","4434","1.0","-1.0","0.0","5868005.183604","-120110.838343","-133.241138","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 4417","passing","EPSG","4326","EPSG","4417","1.0","-1.0","0.0","5227100.829890","-117640.381626","-133.241138","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4418","passing","EPSG","4326","EPSG","4418","1.0","-1.0","0.0","46000315.830000","-1589041.574000","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed for the exact Transverse Mercator: the datum uses NAD27 grids so PROJ cannot be invoked directly, but the shift matches PROJ 9.6.0 exact-minus-approx exactly" +"4326 -> 4419","passing","EPSG","4326","EPSG","4419","1.0","-1.0","0.0","38144879.850000","-1088143.855000","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed for the exact Transverse Mercator: the datum uses NAD27 grids so PROJ cannot be invoked directly, but the shift matches PROJ 9.6.0 exact-minus-approx exactly" +"4326 -> 4434","passing","EPSG","4326","EPSG","4434","1.0","-1.0","0.0","5867992.714069","-120111.185714","-133.241138","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 4437","passing","EPSG","4326","EPSG","4437","1.0","-1.0","0.0","7952042.830285","-479128.830527","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4438","passing","EPSG","4326","EPSG","4438","1.0","-1.0","0.0","4.3029190088462E7","-1215186.11099","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4439","passing","EPSG","4326","EPSG","4439","1.0","-1.0","0.0","3.7024720447344E7","-974391.245523","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 4438","passing","EPSG","4326","EPSG","4438","1.0","-1.0","0.0","45993431.010396","-1587973.475698","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4439","passing","EPSG","4326","EPSG","4439","1.0","-1.0","0.0","38141867.220929","-1087876.465856","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 4455","passing","EPSG","4326","EPSG","4455","1.0","-1.0","0.0","3.3851081735579E7","-722676.685566","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 4456","passing","EPSG","4326","EPSG","4456","1.0","-1.0","0.0","3.2797122316274E7","-2256035.177722","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 4457","passing","EPSG","4326","EPSG","4457","1.0","-1.0","0.0","3.9351939147157E7","8844376.812066","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" @@ -1916,44 +1916,44 @@ "4326 -> 4486","passing","EPSG","4326","EPSG","4486","1.0","-1.0","0.0","1.3117319676437E7","-1.9577493844715E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 4487","passing","EPSG","4326","EPSG","4487","1.0","-1.0","0.0","1.635961359846E7","-1.9271652378892E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 4488","passing","EPSG","4326","EPSG","4488","1.0","-1.0","0.0","9821617.197798","-6559044.245001","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4491","passing","EPSG","4326","EPSG","4491","1.0","-1.0","0.0","1527316.681695","-343262.115256","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4492","passing","EPSG","4326","EPSG","4492","1.0","-1.0","0.0","454694.812572","-435257.597894","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4493","passing","EPSG","4326","EPSG","4493","1.0","-1.0","0.0","-1067776.469979","-564310.855971","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4502","passing","EPSG","4326","EPSG","4502","1.0","-1.0","0.0","-1.1472683318305E7","-343262.115256","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4503","passing","EPSG","4326","EPSG","4503","1.0","-1.0","0.0","-1.3545305187428E7","-435257.597894","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4504","passing","EPSG","4326","EPSG","4504","1.0","-1.0","0.0","-1.6067776469979E7","-564310.855971","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4513","passing","EPSG","4326","EPSG","4513","1.0","-1.0","0.0","1.3527316681695E7","-343262.115256","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4514","passing","EPSG","4326","EPSG","4514","1.0","-1.0","0.0","1.3540288190914E7","-385374.039095","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4515","passing","EPSG","4326","EPSG","4515","1.0","-1.0","0.0","1.3454694812572E7","-435257.597894","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4516","passing","EPSG","4326","EPSG","4516","1.0","-1.0","0.0","1.3257055161241E7","-494345.816812","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4517","passing","EPSG","4326","EPSG","4517","1.0","-1.0","0.0","1.2932223530021E7","-564310.855971","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4518","passing","EPSG","4326","EPSG","4518","1.0","-1.0","0.0","1.2463222673201E7","-647097.022634","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4534","passing","EPSG","4326","EPSG","4534","1.0","-1.0","0.0","-1.1472683318305E7","-343262.115256","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4535","passing","EPSG","4326","EPSG","4535","1.0","-1.0","0.0","-1.2459711809086E7","-385374.039095","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4536","passing","EPSG","4326","EPSG","4536","1.0","-1.0","0.0","-1.3545305187428E7","-435257.597894","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4537","passing","EPSG","4326","EPSG","4537","1.0","-1.0","0.0","-1.4742944838759E7","-494345.816812","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4538","passing","EPSG","4326","EPSG","4538","1.0","-1.0","0.0","-1.6067776469979E7","-564310.855971","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4539","passing","EPSG","4326","EPSG","4539","1.0","-1.0","0.0","-1.7536777326799E7","-647097.022634","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 4491","passing","EPSG","4326","EPSG","4491","1.0","-1.0","0.0","877631.376113","-418603.482556","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4492","passing","EPSG","4326","EPSG","4492","1.0","-1.0","0.0","-1365959.982453","-724567.333919","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4493","passing","EPSG","4326","EPSG","4493","1.0","-1.0","0.0","6174652.663267","-13442262.545895","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4502","passing","EPSG","4326","EPSG","4502","1.0","-1.0","0.0","-12122368.623887","-418603.482556","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4503","passing","EPSG","4326","EPSG","4503","1.0","-1.0","0.0","-15365959.982453","-724567.333919","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4504","passing","EPSG","4326","EPSG","4504","1.0","-1.0","0.0","-8825347.336733","-13442262.545895","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4513","passing","EPSG","4326","EPSG","4513","1.0","-1.0","0.0","12877631.376113","-418603.482556","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4514","passing","EPSG","4326","EPSG","4514","1.0","-1.0","0.0","12470335.717018","-526375.579956","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4515","passing","EPSG","4326","EPSG","4515","1.0","-1.0","0.0","11634040.017547","-724567.333919","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4516","error","EPSG","4326","EPSG","4516","1.0","-1.0","0.0","1.3257055161241E7","-494345.816812","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 4517","passing","EPSG","4326","EPSG","4517","1.0","-1.0","0.0","20174652.663267","-13442262.545895","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4518","error","EPSG","4326","EPSG","4518","1.0","-1.0","0.0","1.2463222673201E7","-647097.022634","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 4534","passing","EPSG","4326","EPSG","4534","1.0","-1.0","0.0","-12122368.623887","-418603.482556","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4535","passing","EPSG","4326","EPSG","4535","1.0","-1.0","0.0","-13529664.282982","-526375.579956","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4536","passing","EPSG","4326","EPSG","4536","1.0","-1.0","0.0","-15365959.982453","-724567.333919","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4537","error","EPSG","4326","EPSG","4537","1.0","-1.0","0.0","-1.4742944838759E7","-494345.816812","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 4538","passing","EPSG","4326","EPSG","4538","1.0","-1.0","0.0","-8825347.336733","-13442262.545895","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4539","error","EPSG","4326","EPSG","4539","1.0","-1.0","0.0","-1.7536777326799E7","-647097.022634","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 4559","passing","EPSG","4326","EPSG","4559","1.0","-1.0","0.0","9876408.371062","-255706.192524","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4568","passing","EPSG","4326","EPSG","4568","1.0","-1.0","0.0","1527118.766369","-343267.732955","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4569","passing","EPSG","4326","EPSG","4569","1.0","-1.0","0.0","454463.6233","-435264.619734","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4570","passing","EPSG","4326","EPSG","4570","1.0","-1.0","0.0","-1068048.023824","-564319.84806","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4579","passing","EPSG","4326","EPSG","4579","1.0","-1.0","0.0","-1.1472881233631E7","-343267.732955","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4580","passing","EPSG","4326","EPSG","4580","1.0","-1.0","0.0","-1.35455363767E7","-435264.619734","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4581","passing","EPSG","4326","EPSG","4581","1.0","-1.0","0.0","-1.6068048023824E7","-564319.84806","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 4568","passing","EPSG","4326","EPSG","4568","1.0","-1.0","0.0","877435.690357","-418608.123450","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4569","passing","EPSG","4326","EPSG","4569","1.0","-1.0","0.0","-1366169.035253","-724562.720366","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4570","passing","EPSG","4326","EPSG","4570","1.0","-1.0","0.0","6163286.592454","-13435548.191109","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4579","passing","EPSG","4326","EPSG","4579","1.0","-1.0","0.0","-12122564.309643","-418608.123450","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4580","passing","EPSG","4326","EPSG","4580","1.0","-1.0","0.0","-15366169.035253","-724562.720366","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4581","passing","EPSG","4326","EPSG","4581","1.0","-1.0","0.0","-8836713.407546","-13435548.191109","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 4647","passing","EPSG","4326","EPSG","4647","1.0","-1.0","0.0","3.1607010790596E7","-111623.60653","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4652","passing","EPSG","4326","EPSG","4652","1.0","-1.0","0.0","1.3527118766369E7","-343267.732955","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4653","passing","EPSG","4326","EPSG","4653","1.0","-1.0","0.0","1.3540074413673E7","-385380.299718","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4654","passing","EPSG","4326","EPSG","4654","1.0","-1.0","0.0","1.34544636233E7","-435264.619734","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4655","passing","EPSG","4326","EPSG","4655","1.0","-1.0","0.0","1.32568047941E7","-494353.740439","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4656","passing","EPSG","4326","EPSG","4656","1.0","-1.0","0.0","1.2931951976176E7","-564319.84806","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4766","passing","EPSG","4326","EPSG","4766","1.0","-1.0","0.0","1.2462927650746E7","-647107.280337","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4782","passing","EPSG","4326","EPSG","4782","1.0","-1.0","0.0","-1.1472881233631E7","-343267.732955","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4783","passing","EPSG","4326","EPSG","4783","1.0","-1.0","0.0","-1.2459925586327E7","-385380.299718","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4784","passing","EPSG","4326","EPSG","4784","1.0","-1.0","0.0","-1.35455363767E7","-435264.619734","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4785","passing","EPSG","4326","EPSG","4785","1.0","-1.0","0.0","-1.47431952059E7","-494353.740439","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4786","passing","EPSG","4326","EPSG","4786","1.0","-1.0","0.0","-1.6068048023824E7","-564319.84806","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4787","passing","EPSG","4326","EPSG","4787","1.0","-1.0","0.0","-1.7537072349254E7","-647107.280337","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 4652","passing","EPSG","4326","EPSG","4652","1.0","-1.0","0.0","12877435.690357","-418608.123450","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4653","passing","EPSG","4326","EPSG","4653","1.0","-1.0","0.0","12470128.448264","-526378.956406","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4654","passing","EPSG","4326","EPSG","4654","1.0","-1.0","0.0","11633830.964747","-724562.720366","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4655","error","EPSG","4326","EPSG","4655","1.0","-1.0","0.0","1.32568047941E7","-494353.740439","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 4656","passing","EPSG","4326","EPSG","4656","1.0","-1.0","0.0","20163286.592454","-13435548.191109","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4766","error","EPSG","4326","EPSG","4766","1.0","-1.0","0.0","1.2462927650746E7","-647107.280337","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 4782","passing","EPSG","4326","EPSG","4782","1.0","-1.0","0.0","-12122564.309643","-418608.123450","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4783","passing","EPSG","4326","EPSG","4783","1.0","-1.0","0.0","-13529871.551736","-526378.956406","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4784","passing","EPSG","4326","EPSG","4784","1.0","-1.0","0.0","-15366169.035253","-724562.720366","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4785","error","EPSG","4326","EPSG","4785","1.0","-1.0","0.0","-1.47431952059E7","-494353.740439","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 4786","passing","EPSG","4326","EPSG","4786","1.0","-1.0","0.0","-8836713.407546","-13435548.191109","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4787","error","EPSG","4326","EPSG","4787","1.0","-1.0","0.0","-1.7537072349254E7","-647107.280337","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 4826","passing","EPSG","4326","EPSG","4826","1.0","-1.0","0.0","3057318.277708","-1587120.453089","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 4839","passing","EPSG","4326","EPSG","4839","1.0","-1.0","0.0","-1506070.493898","-6435230.741586","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 4855","passing","EPSG","4326","EPSG","4855","1.0","-1.0","0.0","-401380.815652","889081.448564","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -1964,24 +1964,24 @@ "4326 -> 4860","passing","EPSG","4326","EPSG","4860","1.0","-1.0","0.0","-962283.83098","887877.803382","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 4861","passing","EPSG","4326","EPSG","4861","1.0","-1.0","0.0","-1075315.787292","887529.87527","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 4862","passing","EPSG","4326","EPSG","4862","1.0","-1.0","0.0","-1188716.310511","887145.056295","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4863","passing","EPSG","4326","EPSG","4863","1.0","-1.0","0.0","-1302522.815483","886722.725861","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4864","passing","EPSG","4326","EPSG","4864","1.0","-1.0","0.0","-1416773.369932","886262.197058","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4865","passing","EPSG","4326","EPSG","4865","1.0","-1.0","0.0","-1531506.760797","885762.713904","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4866","passing","EPSG","4326","EPSG","4866","1.0","-1.0","0.0","-1646762.562957","885223.448292","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4867","passing","EPSG","4326","EPSG","4867","1.0","-1.0","0.0","-1762581.210546","884643.496617","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4868","passing","EPSG","4326","EPSG","4868","1.0","-1.0","0.0","-1879004.071028","884021.87606","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4869","passing","EPSG","4326","EPSG","4869","1.0","-1.0","0.0","-1996073.52225","883357.520526","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4870","passing","EPSG","4326","EPSG","4870","1.0","-1.0","0.0","-2113833.032642","882649.276193","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4871","passing","EPSG","4326","EPSG","4871","1.0","-1.0","0.0","-2232327.244772","881895.896667","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4872","passing","EPSG","4326","EPSG","4872","1.0","-1.0","0.0","-2351602.06243","881096.037711","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4873","passing","EPSG","4326","EPSG","4873","1.0","-1.0","0.0","-2471704.741451","880248.251521","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4874","passing","EPSG","4326","EPSG","4874","1.0","-1.0","0.0","-2592683.984457","879350.980532","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4875","passing","EPSG","4326","EPSG","4875","1.0","-1.0","0.0","-2714590.039706","878402.550714","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4876","passing","EPSG","4326","EPSG","4876","1.0","-1.0","0.0","-2837474.804249","877401.164338","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4877","passing","EPSG","4326","EPSG","4877","1.0","-1.0","0.0","-2961391.931586","876344.892177","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4878","passing","EPSG","4326","EPSG","4878","1.0","-1.0","0.0","-3086396.944001","875231.665115","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4879","passing","EPSG","4326","EPSG","4879","1.0","-1.0","0.0","-3212547.349776","874059.265119","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4880","passing","EPSG","4326","EPSG","4880","1.0","-1.0","0.0","-3339902.765479","872825.315559","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 4863","passing","EPSG","4326","EPSG","4863","1.0","-1.0","0.0","-1302522.927306","886722.724045","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4864","passing","EPSG","4326","EPSG","4864","1.0","-1.0","0.0","-1416773.566285","886262.193653","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4865","passing","EPSG","4326","EPSG","4865","1.0","-1.0","0.0","-1531507.094775","885762.707747","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4866","passing","EPSG","4326","EPSG","4866","1.0","-1.0","0.0","-1646763.115252","885223.437505","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4867","passing","EPSG","4326","EPSG","4867","1.0","-1.0","0.0","-1762582.101218","884643.478240","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4868","passing","EPSG","4326","EPSG","4868","1.0","-1.0","0.0","-1879005.475356","884021.845536","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4869","passing","EPSG","4326","EPSG","4869","1.0","-1.0","0.0","-1996075.691768","883357.470970","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4870","passing","EPSG","4326","EPSG","4870","1.0","-1.0","0.0","-2113836.322727","882649.197386","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4871","passing","EPSG","4326","EPSG","4871","1.0","-1.0","0.0","-2232332.150416","881895.773692","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4872","passing","EPSG","4326","EPSG","4872","1.0","-1.0","0.0","-2351609.264146","881095.849110","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4873","passing","EPSG","4326","EPSG","4873","1.0","-1.0","0.0","-2471715.163646","880247.966851","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4874","passing","EPSG","4326","EPSG","4874","1.0","-1.0","0.0","-2592698.869007","879350.557142","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4875","passing","EPSG","4326","EPSG","4875","1.0","-1.0","0.0","-2714611.037981","878401.929546","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4876","passing","EPSG","4326","EPSG","4876","1.0","-1.0","0.0","-2837504.091373","877400.264491","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4877","passing","EPSG","4326","EPSG","4877","1.0","-1.0","0.0","-2961432.347352","876343.603938","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4878","passing","EPSG","4326","EPSG","4878","1.0","-1.0","0.0","-3086452.165613","875229.841080","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4879","passing","EPSG","4326","EPSG","4879","1.0","-1.0","0.0","-3212622.102393","874056.708962","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 4880","passing","EPSG","4326","EPSG","4880","1.0","-1.0","0.0","-3340003.077490","872821.767912","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 5014","passing","EPSG","4326","EPSG","5014","1.0","-1.0","0.0","4528360.482014","-133522.286394","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5015","passing","EPSG","4326","EPSG","5015","1.0","-1.0","0.0","3748089.863294","-125299.015884","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5016","passing","EPSG","4326","EPSG","5016","1.0","-1.0","0.0","2303877.831952","-115015.371832","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -2001,59 +2001,59 @@ "4326 -> 5110","passing","EPSG","4326","EPSG","5110","1.0","-1.0","0.0","-962283.83098","-5543404.868499","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5111","passing","EPSG","4326","EPSG","5111","1.0","-1.0","0.0","-1075315.787292","-5543752.796612","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5112","passing","EPSG","4326","EPSG","5112","1.0","-1.0","0.0","-1188716.310511","-5544137.615587","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5113","passing","EPSG","4326","EPSG","5113","1.0","-1.0","0.0","-1302522.815483","-5544559.94602","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5114","passing","EPSG","4326","EPSG","5114","1.0","-1.0","0.0","-1416773.369932","-5545020.474823","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5115","passing","EPSG","4326","EPSG","5115","1.0","-1.0","0.0","-1531506.760797","-5545519.957977","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5116","passing","EPSG","4326","EPSG","5116","1.0","-1.0","0.0","-1646762.562957","-5546059.223589","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5117","passing","EPSG","4326","EPSG","5117","1.0","-1.0","0.0","-1762581.210546","-5546639.175265","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5118","passing","EPSG","4326","EPSG","5118","1.0","-1.0","0.0","-1879004.071028","-5547260.795821","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5119","passing","EPSG","4326","EPSG","5119","1.0","-1.0","0.0","-1996073.52225","-5547925.151356","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5120","passing","EPSG","4326","EPSG","5120","1.0","-1.0","0.0","-2113833.032642","-5548633.395688","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5121","passing","EPSG","4326","EPSG","5121","1.0","-1.0","0.0","-2232327.244772","-5549386.775214","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5122","passing","EPSG","4326","EPSG","5122","1.0","-1.0","0.0","-2351602.06243","-5550186.63417","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5123","passing","EPSG","4326","EPSG","5123","1.0","-1.0","0.0","-2471704.741451","-5551034.42036","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5124","passing","EPSG","4326","EPSG","5124","1.0","-1.0","0.0","-2592683.984457","-5551931.691349","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5125","passing","EPSG","4326","EPSG","5125","1.0","-1.0","0.0","-2714590.039706","-5552880.121167","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5126","passing","EPSG","4326","EPSG","5126","1.0","-1.0","0.0","-2837474.804249","-5553881.507544","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5127","passing","EPSG","4326","EPSG","5127","1.0","-1.0","0.0","-2961391.931586","-5554937.779704","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5128","passing","EPSG","4326","EPSG","5128","1.0","-1.0","0.0","-3086396.944001","-5556051.006767","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5129","passing","EPSG","4326","EPSG","5129","1.0","-1.0","0.0","-3212547.349776","-5557223.406762","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5130","passing","EPSG","4326","EPSG","5130","1.0","-1.0","0.0","-3339902.765479","-5558457.356322","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 5113","passing","EPSG","4326","EPSG","5113","1.0","-1.0","0.0","-1302522.927306","-5544559.947834","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5114","passing","EPSG","4326","EPSG","5114","1.0","-1.0","0.0","-1416773.566285","-5545020.478225","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5115","passing","EPSG","4326","EPSG","5115","1.0","-1.0","0.0","-1531507.094775","-5545519.964131","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5116","passing","EPSG","4326","EPSG","5116","1.0","-1.0","0.0","-1646763.115252","-5546059.234374","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5117","passing","EPSG","4326","EPSG","5117","1.0","-1.0","0.0","-1762582.101218","-5546639.193638","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5118","passing","EPSG","4326","EPSG","5118","1.0","-1.0","0.0","-1879005.475356","-5547260.826342","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5119","passing","EPSG","4326","EPSG","5119","1.0","-1.0","0.0","-1996075.691768","-5547925.200909","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5120","passing","EPSG","4326","EPSG","5120","1.0","-1.0","0.0","-2113836.322727","-5548633.474492","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5121","passing","EPSG","4326","EPSG","5121","1.0","-1.0","0.0","-2232332.150416","-5549386.898187","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5122","passing","EPSG","4326","EPSG","5122","1.0","-1.0","0.0","-2351609.264146","-5550186.822769","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5123","passing","EPSG","4326","EPSG","5123","1.0","-1.0","0.0","-2471715.163646","-5551034.705028","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5124","passing","EPSG","4326","EPSG","5124","1.0","-1.0","0.0","-2592698.869007","-5551932.114736","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5125","passing","EPSG","4326","EPSG","5125","1.0","-1.0","0.0","-2714611.037981","-5552880.742333","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5126","passing","EPSG","4326","EPSG","5126","1.0","-1.0","0.0","-2837504.091373","-5553882.407388","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5127","passing","EPSG","4326","EPSG","5127","1.0","-1.0","0.0","-2961432.347352","-5554939.067940","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5128","passing","EPSG","4326","EPSG","5128","1.0","-1.0","0.0","-3086452.165613","-5556052.830799","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5129","passing","EPSG","4326","EPSG","5129","1.0","-1.0","0.0","-3212622.102393","-5557225.962917","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5130","passing","EPSG","4326","EPSG","5130","1.0","-1.0","0.0","-3340003.077490","-5558460.903966","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 5221","passing","EPSG","4326","EPSG","5221","1.0","-1.0","0.0","-3403171.8139043623","-6866781.451857718","158.074317","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5223","passing","EPSG","4326","EPSG","5223","1.0","-1.0","0.0","-731474.867088","387387.177554","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5234","passing","EPSG","4326","EPSG","5234","1.0","-1.0","0.0","-1.3758260606485E7","-1005469.03451","945.386856","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5235","passing","EPSG","4326","EPSG","5235","1.0","-1.0","0.0","-1.345855967557E7","-705291.382937","849.332431","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 5234","passing","EPSG","4326","EPSG","5234","1.0","-1.0","0.0","-15502334.307031","-1277555.600045","945.386856","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5235","passing","EPSG","4326","EPSG","5235","1.0","-1.0","0.0","-15202913.356535","-977316.346419","849.332431","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 5243","passing","EPSG","4326","EPSG","5243","1.0","-1.0","0.0","-1506070.493898","-6435230.741586","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5247","failing","EPSG","4326","EPSG","5247","1.0","-1.0","0.0","-1.2409058238151E7","-4357833.596094","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5253","passing","EPSG","4326","EPSG","5253","1.0","-1.0","0.0","-2499300.897575","-123119.985081","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5254","passing","EPSG","4326","EPSG","5254","1.0","-1.0","0.0","-2876070.619546","-126549.860952","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5255","passing","EPSG","4326","EPSG","5255","1.0","-1.0","0.0","-3263974.993052","-130545.989415","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5256","passing","EPSG","4326","EPSG","5256","1.0","-1.0","0.0","-3664785.187266","-135184.847746","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5257","passing","EPSG","4326","EPSG","5257","1.0","-1.0","0.0","-4080493.872404","-140560.129725","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5258","passing","EPSG","4326","EPSG","5258","1.0","-1.0","0.0","-4513354.151499","-146786.390836","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5259","passing","EPSG","4326","EPSG","5259","1.0","-1.0","0.0","-4965923.372587","-154003.431247","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5266","passing","EPSG","4326","EPSG","5266","1.0","-1.0","0.0","-1.7786777326799E7","-647097.022634","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5269","passing","EPSG","4326","EPSG","5269","1.0","-1.0","0.0","6500699.102425","-123119.985081","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5270","passing","EPSG","4326","EPSG","5270","1.0","-1.0","0.0","7123929.380454","-126549.860952","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5271","passing","EPSG","4326","EPSG","5271","1.0","-1.0","0.0","7736025.006948","-130545.989415","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5272","passing","EPSG","4326","EPSG","5272","1.0","-1.0","0.0","8335214.812734","-135184.847746","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5273","passing","EPSG","4326","EPSG","5273","1.0","-1.0","0.0","8919506.127596","-140560.129725","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5274","passing","EPSG","4326","EPSG","5274","1.0","-1.0","0.0","9486645.848501","-146786.390836","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5275","passing","EPSG","4326","EPSG","5275","1.0","-1.0","0.0","1.0034076627413E7","-154003.431247","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5292","passing","EPSG","4326","EPSG","5292","1.0","-1.0","0.0","-1.8169909207122E7","-3169532.907567","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5293","passing","EPSG","4326","EPSG","5293","1.0","-1.0","0.0","-1.7556513883394E7","-3133776.920429","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5294","passing","EPSG","4326","EPSG","5294","1.0","-1.0","0.0","-1.7709618736852E7","-3142619.776416","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5295","passing","EPSG","4326","EPSG","5295","1.0","-1.0","0.0","-1.7803978922572E7","-3148097.063507","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5296","passing","EPSG","4326","EPSG","5296","1.0","-1.0","0.0","-1.7864343351674E7","-3151611.881638","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5299","passing","EPSG","4326","EPSG","5299","1.0","-1.0","0.0","-1.7455334051796E7","-3127963.421504","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5301","passing","EPSG","4326","EPSG","5301","1.0","-1.0","0.0","-1.7709618736852E7","-3142619.776416","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5303","passing","EPSG","4326","EPSG","5303","1.0","-1.0","0.0","-1.7313201852726E7","-3119838.008648","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5304","passing","EPSG","4326","EPSG","5304","1.0","-1.0","0.0","-1.7924955772937E7","-3155149.636554","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5305","passing","EPSG","4326","EPSG","5305","1.0","-1.0","0.0","-1.7556513883394E7","-3133776.920429","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5307","passing","EPSG","4326","EPSG","5307","1.0","-1.0","0.0","-1.8046929347289E7","-3162294.531826","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5308","passing","EPSG","4326","EPSG","5308","1.0","-1.0","0.0","-1.7872987058161E7","-3152115.867565","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5309","passing","EPSG","4326","EPSG","5309","1.0","-1.0","0.0","-1.7847071118416E7","-3150605.313657","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5311","passing","EPSG","4326","EPSG","5311","1.0","-1.0","0.0","-1.8240638922076E7","-3173711.543301","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 5247","passing","EPSG","4326","EPSG","5247","1.0","-1.0","0.0","-1.2409058238151E7","-4357833.596094","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 5253","passing","EPSG","4326","EPSG","5253","1.0","-1.0","0.0","-2499335.346168","-123121.063287","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5254","passing","EPSG","4326","EPSG","5254","1.0","-1.0","0.0","-2876157.305504","-126552.875849","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5255","passing","EPSG","4326","EPSG","5255","1.0","-1.0","0.0","-3264177.079801","-130553.735327","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5256","passing","EPSG","4326","EPSG","5256","1.0","-1.0","0.0","-3665227.179089","-135203.393740","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5257","passing","EPSG","4326","EPSG","5257","1.0","-1.0","0.0","-4081409.841045","-140601.974553","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5258","passing","EPSG","4326","EPSG","5258","1.0","-1.0","0.0","-4515167.158491","-146876.164724","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5259","passing","EPSG","4326","EPSG","5259","1.0","-1.0","0.0","-4969373.359334","-154187.932335","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5266","error","EPSG","4326","EPSG","5266","1.0","-1.0","0.0","-1.7786777326799E7","-647097.022634","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5269","passing","EPSG","4326","EPSG","5269","1.0","-1.0","0.0","6500664.653832","-123121.063287","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5270","passing","EPSG","4326","EPSG","5270","1.0","-1.0","0.0","7123842.694496","-126552.875849","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5271","passing","EPSG","4326","EPSG","5271","1.0","-1.0","0.0","7735822.920199","-130553.735327","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5272","passing","EPSG","4326","EPSG","5272","1.0","-1.0","0.0","8334772.820911","-135203.393740","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5273","passing","EPSG","4326","EPSG","5273","1.0","-1.0","0.0","8918590.158955","-140601.974553","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5274","passing","EPSG","4326","EPSG","5274","1.0","-1.0","0.0","9484832.841509","-146876.164724","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5275","passing","EPSG","4326","EPSG","5275","1.0","-1.0","0.0","10030626.640666","-154187.932335","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5292","error","EPSG","4326","EPSG","5292","1.0","-1.0","0.0","-1.8169909207122E7","-3169532.907567","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5293","error","EPSG","4326","EPSG","5293","1.0","-1.0","0.0","-1.7556513883394E7","-3133776.920429","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5294","error","EPSG","4326","EPSG","5294","1.0","-1.0","0.0","-1.7709618736852E7","-3142619.776416","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5295","error","EPSG","4326","EPSG","5295","1.0","-1.0","0.0","-1.7803978922572E7","-3148097.063507","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5296","error","EPSG","4326","EPSG","5296","1.0","-1.0","0.0","-1.7864343351674E7","-3151611.881638","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5299","error","EPSG","4326","EPSG","5299","1.0","-1.0","0.0","-1.7455334051796E7","-3127963.421504","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5301","error","EPSG","4326","EPSG","5301","1.0","-1.0","0.0","-1.7709618736852E7","-3142619.776416","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5303","error","EPSG","4326","EPSG","5303","1.0","-1.0","0.0","-1.7313201852726E7","-3119838.008648","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5304","error","EPSG","4326","EPSG","5304","1.0","-1.0","0.0","-1.7924955772937E7","-3155149.636554","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5305","error","EPSG","4326","EPSG","5305","1.0","-1.0","0.0","-1.7556513883394E7","-3133776.920429","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5307","error","EPSG","4326","EPSG","5307","1.0","-1.0","0.0","-1.8046929347289E7","-3162294.531826","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5308","error","EPSG","4326","EPSG","5308","1.0","-1.0","0.0","-1.7872987058161E7","-3152115.867565","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5309","error","EPSG","4326","EPSG","5309","1.0","-1.0","0.0","-1.7847071118416E7","-3150605.313657","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5311","error","EPSG","4326","EPSG","5311","1.0","-1.0","0.0","-1.8240638922076E7","-3173711.543301","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 5316","passing","EPSG","4326","EPSG","5316","1.0","-1.0","0.0","1093343.867984","-6111667.938834","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5320","passing","EPSG","4326","EPSG","5320","1.0","-1.0","0.0","1.1589485449673E7","6556081.94433","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5321","passing","EPSG","4326","EPSG","5321","1.0","-1.0","0.0","1.1589485449673E7","6556081.94433","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -2062,19 +2062,19 @@ "4326 -> 5330","passing","EPSG","4326","EPSG","5330","1.0","-1.0","0.0","-8196705.156102","789820.842694","1103.991405","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5331","passing","EPSG","4326","EPSG","5331","1.0","-1.0","0.0","-8196548.068024","789629.424703","1320.943549","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5337","passing","EPSG","4326","EPSG","5337","1.0","-1.0","0.0","4528179.727213","9866656.781317","-106.602413","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5343","passing","EPSG","4326","EPSG","5343","1.0","-1.0","0.0","1.316346709951E7","9671230.891208","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5344","passing","EPSG","4326","EPSG","5344","1.0","-1.0","0.0","1.328947315091E7","9704851.838049","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5345","passing","EPSG","4326","EPSG","5345","1.0","-1.0","0.0","1.34882032921E7","9733276.551189","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5346","passing","EPSG","4326","EPSG","5346","1.0","-1.0","0.0","1.3750656290095E7","9757339.480787","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5347","passing","EPSG","4326","EPSG","5347","1.0","-1.0","0.0","1.406889415915E7","9777744.441021","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5348","passing","EPSG","4326","EPSG","5348","1.0","-1.0","0.0","1.4435929604234E7","9795082.873512","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5349","passing","EPSG","4326","EPSG","5349","1.0","-1.0","0.0","1.4845622388712E7","9809849.986231","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 5343","passing","EPSG","4326","EPSG","5343","1.0","-1.0","0.0","13715628.232019","9609466.563341","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5344","passing","EPSG","4326","EPSG","5344","1.0","-1.0","0.0","13630116.425822","9670247.632028","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5345","passing","EPSG","4326","EPSG","5345","1.0","-1.0","0.0","13698671.075148","9713633.023942","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5346","passing","EPSG","4326","EPSG","5346","1.0","-1.0","0.0","13880160.435236","9746157.213300","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5347","passing","EPSG","4326","EPSG","5347","1.0","-1.0","0.0","14147910.338344","9771406.084630","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5348","passing","EPSG","4326","EPSG","5348","1.0","-1.0","0.0","14483559.356534","9791525.214552","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5349","passing","EPSG","4326","EPSG","5349","1.0","-1.0","0.0","14873889.490377","9807881.931398","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 5355","passing","EPSG","4326","EPSG","5355","1.0","-1.0","0.0","9876408.371062","9744293.807476","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5356","passing","EPSG","4326","EPSG","5356","1.0","-1.0","0.0","1.1625664379252E7","9668414.590036","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5357","passing","EPSG","4326","EPSG","5357","1.0","-1.0","0.0","8480365.932792","9789643.661527","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5361","passing","EPSG","4326","EPSG","5361","1.0","-1.0","0.0","1.1625664379252E7","9668414.590036","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5362","passing","EPSG","4326","EPSG","5362","1.0","-1.0","0.0","1.4018825808604E7","9515984.716577","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5367","passing","EPSG","4326","EPSG","5367","1.0","-1.0","0.0","1.6609414000793E7","-539612.639788","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 5367","error","EPSG","4326","EPSG","5367","1.0","-1.0","0.0","1.6609414000793E7","-539612.639788","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 5382","passing","EPSG","4326","EPSG","5382","1.0","-1.0","0.0","8480365.932696","9789643.661529","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5383","passing","EPSG","4326","EPSG","5383","1.0","-1.0","0.0","7306321.314744","9819497.181068","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5387","passing","EPSG","4326","EPSG","5387","1.0","-1.0","0.0","1.4018825808604E7","9515984.716577","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -2087,9 +2087,9 @@ "4326 -> 5460","passing","EPSG","4326","EPSG","5460","1.0","-1.0","0.0","1.0610418369162E7","557329.479905","-277.649595","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5461","passing","EPSG","4326","EPSG","5461","1.0","-1.0","0.0","1.0235130039759E7","478378.87619","-277.649595","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5462","passing","EPSG","4326","EPSG","5462","1.0","-1.0","0.0","1.0210066837694E7","371829.165134","-277.649595","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5466","passing","EPSG","4326","EPSG","5466","1.0","-1.0","0.0","1.8433986868757E7","-2417645.641648","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 5466","error","EPSG","4326","EPSG","5466","1.0","-1.0","0.0","1.8433986868757E7","-2417645.641648","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 5469","passing","EPSG","4326","EPSG","5469","1.0","-1.0","0.0","9570952.784497","190944.524085","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5472","failing","EPSG","4326","EPSG","5472","1.0","-1.0","0.0","1.0980369203568E7","-150245.280612","0.0","1.000000","1.000000","1.000000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 5472","passing","EPSG","4326","EPSG","5472","1.0","-1.0","0.0","1.0980369203568E7","-150245.280612","0.0","1.000000","1.000000","1.000000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5479","passing","EPSG","4326","EPSG","5479","1.0","-1.0","0.0","2585213.174496","-7552437.343099","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5480","passing","EPSG","4326","EPSG","5480","1.0","-1.0","0.0","568936.837406","-9763978.38156","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5481","passing","EPSG","4326","EPSG","5481","1.0","-1.0","0.0","-1669284.136119","-1.1868078294819E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -2099,7 +2099,7 @@ "4326 -> 5514","passing","EPSG","4326","EPSG","5514","1.0","-1.0","0.0","-3403171.813904","-6866781.451858","158.074317","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5520","passing","EPSG","4326","EPSG","5520","1.0","-1.0","0.0","1277387.834203","-111056.870189","105.205271","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5523","passing","EPSG","4326","EPSG","5523","1.0","-1.0","0.0","325154.339023","5387574.863316","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5530","failing","EPSG","4326","EPSG","5530","1.0","-1.0","0.0","1.1121377267748E7","9838205.650141","43.595055","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 5530","passing","EPSG","4326","EPSG","5530","1.0","-1.0","0.0","1.1121377267748E7","9838205.650141","43.595055","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5531","passing","EPSG","4326","EPSG","5531","1.0","-1.0","0.0","8480387.698484","9789718.016158","43.595055","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5532","passing","EPSG","4326","EPSG","5532","1.0","-1.0","0.0","7306338.55404","9819561.455913","43.101417","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5533","passing","EPSG","4326","EPSG","5533","1.0","-1.0","0.0","6282904.939266","9840380.305315","43.595055","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -2113,34 +2113,34 @@ "4326 -> 5551","passing","EPSG","4326","EPSG","5551","1.0","-1.0","0.0","-3528360.482014","-9862407.599484","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5552","passing","EPSG","4326","EPSG","5552","1.0","-1.0","0.0","-2748089.863294","-9870630.869993","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5559","passing","EPSG","4326","EPSG","5559","1.0","-1.0","0.0","1.0783799527899E7","704674.053773","-277.649595","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5562","passing","EPSG","4326","EPSG","5562","1.0","-1.0","0.0","2227101.818314","-117628.224271","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5563","passing","EPSG","4326","EPSG","5563","1.0","-1.0","0.0","2500779.686146","-123021.9434","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5564","passing","EPSG","4326","EPSG","5564","1.0","-1.0","0.0","2736100.373433","-130441.693098","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5565","passing","EPSG","4326","EPSG","5565","1.0","-1.0","0.0","2919578.05322","-140447.416996","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5566","passing","EPSG","4326","EPSG","5566","1.0","-1.0","0.0","-1772898.181686","-117628.224271","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5567","passing","EPSG","4326","EPSG","5567","1.0","-1.0","0.0","-2499220.313854","-123021.9434","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5568","passing","EPSG","4326","EPSG","5568","1.0","-1.0","0.0","-3263899.626567","-130441.693098","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5569","passing","EPSG","4326","EPSG","5569","1.0","-1.0","0.0","-4080421.94678","-140447.416996","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5570","passing","EPSG","4326","EPSG","5570","1.0","-1.0","0.0","5227101.818314","-117628.224271","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5571","passing","EPSG","4326","EPSG","5571","1.0","-1.0","0.0","5868002.071717","-120098.5296","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5572","passing","EPSG","4326","EPSG","5572","1.0","-1.0","0.0","6500779.686146","-123021.9434","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5573","passing","EPSG","4326","EPSG","5573","1.0","-1.0","0.0","7124007.155018","-126448.927388","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5574","passing","EPSG","4326","EPSG","5574","1.0","-1.0","0.0","7736100.373433","-130441.693098","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5575","passing","EPSG","4326","EPSG","5575","1.0","-1.0","0.0","8335288.213048","-135076.651919","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5576","passing","EPSG","4326","EPSG","5576","1.0","-1.0","0.0","8919578.05322","-140447.416996","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5577","passing","EPSG","4326","EPSG","5577","1.0","-1.0","0.0","-1772898.181686","-117628.224271","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5578","passing","EPSG","4326","EPSG","5578","1.0","-1.0","0.0","-2131997.928283","-120098.5296","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5579","passing","EPSG","4326","EPSG","5579","1.0","-1.0","0.0","-2499220.313854","-123021.9434","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5580","passing","EPSG","4326","EPSG","5580","1.0","-1.0","0.0","-2875992.844982","-126448.927388","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5581","passing","EPSG","4326","EPSG","5581","1.0","-1.0","0.0","-3263899.626567","-130441.693098","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5582","passing","EPSG","4326","EPSG","5582","1.0","-1.0","0.0","-3664711.786952","-135076.651919","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5583","passing","EPSG","4326","EPSG","5583","1.0","-1.0","0.0","-4080421.94678","-140447.416996","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 5562","passing","EPSG","4326","EPSG","5562","1.0","-1.0","0.0","2227097.794649","-117628.322805","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5563","passing","EPSG","4326","EPSG","5563","1.0","-1.0","0.0","2500745.250524","-123023.020279","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5564","passing","EPSG","4326","EPSG","5564","1.0","-1.0","0.0","2735898.348725","-130449.430062","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5565","passing","EPSG","4326","EPSG","5565","1.0","-1.0","0.0","2918662.321413","-140489.215701","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5566","passing","EPSG","4326","EPSG","5566","1.0","-1.0","0.0","-1772902.205351","-117628.322805","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5567","passing","EPSG","4326","EPSG","5567","1.0","-1.0","0.0","-2499254.749476","-123023.020279","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5568","passing","EPSG","4326","EPSG","5568","1.0","-1.0","0.0","-3264101.651275","-130449.430062","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5569","passing","EPSG","4326","EPSG","5569","1.0","-1.0","0.0","-4081337.678587","-140489.215701","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5570","passing","EPSG","4326","EPSG","5570","1.0","-1.0","0.0","5227097.794649","-117628.322805","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5571","passing","EPSG","4326","EPSG","5571","1.0","-1.0","0.0","5867989.602057","-120098.876939","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5572","passing","EPSG","4326","EPSG","5572","1.0","-1.0","0.0","6500745.250524","-123023.020279","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5573","passing","EPSG","4326","EPSG","5573","1.0","-1.0","0.0","7123920.498398","-126451.938699","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5574","passing","EPSG","4326","EPSG","5574","1.0","-1.0","0.0","7735898.348725","-130449.430062","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5575","passing","EPSG","4326","EPSG","5575","1.0","-1.0","0.0","8334846.345307","-135095.177023","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5576","passing","EPSG","4326","EPSG","5576","1.0","-1.0","0.0","8918662.321413","-140489.215701","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5577","passing","EPSG","4326","EPSG","5577","1.0","-1.0","0.0","-1772902.205351","-117628.322805","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5578","passing","EPSG","4326","EPSG","5578","1.0","-1.0","0.0","-2132010.397943","-120098.876939","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5579","passing","EPSG","4326","EPSG","5579","1.0","-1.0","0.0","-2499254.749476","-123023.020279","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5580","passing","EPSG","4326","EPSG","5580","1.0","-1.0","0.0","-2876079.501602","-126451.938699","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5581","passing","EPSG","4326","EPSG","5581","1.0","-1.0","0.0","-3264101.651275","-130449.430062","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5582","passing","EPSG","4326","EPSG","5582","1.0","-1.0","0.0","-3665153.654693","-135095.177023","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5583","passing","EPSG","4326","EPSG","5583","1.0","-1.0","0.0","-4081337.678587","-140489.215701","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 5588","passing","EPSG","4326","EPSG","5588","1.0","-1.0","0.0","3.1877552848696E7","-8575947.900939","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5589","passing","EPSG","4326","EPSG","5589","1.0","-1.0","0.0","6.0479502152242E7","-7931979.437137","0.0","1.000000","1.000000","1.000000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 5589","error","EPSG","4326","EPSG","5589","1.0","-1.0","0.0","6.0479502152242E7","-7931979.437137","0.0","1.000000","1.000000","1.000000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 5596","passing","EPSG","4326","EPSG","5596","1.0","-1.0","0.0","-156452.534464","-112409.590659","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5623","passing","EPSG","4326","EPSG","5623","1.0","-1.0","0.0","5.2869091045749E7","-1.6822134288657E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5624","passing","EPSG","4326","EPSG","5624","1.0","-1.0","0.0","5.6012268152917E7","-1.6992073725156E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5625","passing","EPSG","4326","EPSG","5625","1.0","-1.0","0.0","6.0959498689223E7","-1.7275323241246E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 5623","error","EPSG","4326","EPSG","5623","1.0","-1.0","0.0","5.2869091045749E7","-1.6822134288657E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5624","error","EPSG","4326","EPSG","5624","1.0","-1.0","0.0","5.6012268152917E7","-1.6992073725156E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5625","error","EPSG","4326","EPSG","5625","1.0","-1.0","0.0","6.0959498689223E7","-1.7275323241246E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 5627","passing","EPSG","4326","EPSG","5627","1.0","-1.0","0.0","-56927.729375","-110836.446997","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5629","passing","EPSG","4326","EPSG","5629","1.0","-1.0","0.0","-4967185.609965","9845873.742836","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5631","passing","EPSG","4326","EPSG","5631","1.0","-1.0","0.0","1606760.604609","-111594.833491","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -2152,51 +2152,51 @@ "4326 -> 5637","passing","EPSG","4326","EPSG","5637","1.0","-1.0","0.0","2626066.282662","-3523299.317111","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5638","passing","EPSG","4326","EPSG","5638","1.0","-1.0","0.0","3205019.517945","-2404654.630931","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5639","passing","EPSG","4326","EPSG","5639","1.0","-1.0","0.0","2626066.282662","-3523299.317111","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5641","failing","EPSG","4326","EPSG","5641","1.0","-1.0","0.0","9895093.786885","9889486.946569","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 5641","passing","EPSG","4326","EPSG","5641","1.0","-1.0","0.0","9895093.786885","9889486.946569","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5643","passing","EPSG","4326","EPSG","5643","1.0","-1.0","0.0","-651904.960543","-6214068.229118","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5644","passing","EPSG","4326","EPSG","5644","1.0","-1.0","0.0","-5950996.913984","9827239.655582","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5646","passing","EPSG","4326","EPSG","5646","1.0","-1.0","0.0","4.0408311065166E7","-1.6548215312486E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 5646","passing","EPSG","4326","EPSG","5646","1.0","-1.0","0.0","42372963.889249","-16771908.859956","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 5649","passing","EPSG","4326","EPSG","5649","1.0","-1.0","0.0","3.1277438263523E7","-110597.97252","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5650","passing","EPSG","4326","EPSG","5650","1.0","-1.0","0.0","3.192655237423E7","-113937.032147","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 5650","passing","EPSG","4326","EPSG","5650","1.0","-1.0","0.0","31926552.117294","-113937.036743","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 5651","passing","EPSG","4326","EPSG","5651","1.0","-1.0","0.0","3.1277438263523E7","-110597.97252","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5652","passing","EPSG","4326","EPSG","5652","1.0","-1.0","0.0","3.1607010790596E7","-111623.60653","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5653","passing","EPSG","4326","EPSG","5653","1.0","-1.0","0.0","3.192655237423E7","-113937.032147","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5654","passing","EPSG","4326","EPSG","5654","1.0","-1.0","0.0","4.0408311065166E7","-1.6548215312486E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5655","passing","EPSG","4326","EPSG","5655","1.0","-1.0","0.0","4.0408311065166E7","-1.6548215312486E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 5653","passing","EPSG","4326","EPSG","5653","1.0","-1.0","0.0","31926552.117294","-113937.036743","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5654","passing","EPSG","4326","EPSG","5654","1.0","-1.0","0.0","42372963.889249","-16771908.859956","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 5655","passing","EPSG","4326","EPSG","5655","1.0","-1.0","0.0","42372963.889249","-16771908.859956","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 5659","passing","EPSG","4326","EPSG","5659","1.0","-1.0","0.0","-392946.293555","-4111527.722932","-71.709798","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5663","passing","EPSG","4326","EPSG","5663","1.0","-1.0","0.0","1926020.769368","-113907.423756","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 5663","passing","EPSG","4326","EPSG","5663","1.0","-1.0","0.0","1926020.512501","-113907.428347","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 5664","passing","EPSG","4326","EPSG","5664","1.0","-1.0","0.0","1606760.774275","-111591.535738","-133.241138","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5665","passing","EPSG","4326","EPSG","5665","1.0","-1.0","0.0","1926020.936157","-113904.057349","-133.241138","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 5665","passing","EPSG","4326","EPSG","5665","1.0","-1.0","0.0","1926020.679291","-113904.061940","-133.241138","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 5666","passing","EPSG","4326","EPSG","5666","1.0","-1.0","0.0","2606757.139676","-111657.546981","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5667","passing","EPSG","4326","EPSG","5667","1.0","-1.0","0.0","3268175.410532","-112647.043075","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5668","passing","EPSG","4326","EPSG","5668","1.0","-1.0","0.0","3268175.410532","-112647.043075","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5669","passing","EPSG","4326","EPSG","5669","1.0","-1.0","0.0","3926105.663731","-113971.626991","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 5669","passing","EPSG","4326","EPSG","5669","1.0","-1.0","0.0","3926105.407353","-113971.631576","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 5670","passing","EPSG","4326","EPSG","5670","1.0","-1.0","0.0","2606760.604609","-111594.833491","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5671","passing","EPSG","4326","EPSG","5671","1.0","-1.0","0.0","3268134.781191","-112583.677635","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5672","passing","EPSG","4326","EPSG","5672","1.0","-1.0","0.0","3926020.769368","-113907.423756","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 5672","passing","EPSG","4326","EPSG","5672","1.0","-1.0","0.0","3926020.512501","-113907.428347","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 5673","passing","EPSG","4326","EPSG","5673","1.0","-1.0","0.0","2606760.774275","-111591.535738","-133.241138","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5674","passing","EPSG","4326","EPSG","5674","1.0","-1.0","0.0","3268134.949234","-112580.350505","-133.241138","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5675","passing","EPSG","4326","EPSG","5675","1.0","-1.0","0.0","3926020.936157","-113904.057349","-133.241138","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 5675","passing","EPSG","4326","EPSG","5675","1.0","-1.0","0.0","3926020.679291","-113904.061940","-133.241138","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 5676","passing","EPSG","4326","EPSG","5676","1.0","-1.0","0.0","1942852.593323","-111415.501399","105.205271","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5677","passing","EPSG","4326","EPSG","5677","1.0","-1.0","0.0","2606770.853728","-112086.713675","105.205271","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5678","passing","EPSG","4326","EPSG","5678","1.0","-1.0","0.0","3268189.653934","-113079.999334","105.205271","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5679","passing","EPSG","4326","EPSG","5679","1.0","-1.0","0.0","3926120.495868","-114409.659607","105.205271","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 5679","passing","EPSG","4326","EPSG","5679","1.0","-1.0","0.0","3926120.239514","-114409.664209","105.205271","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 5680","passing","EPSG","4326","EPSG","5680","1.0","-1.0","0.0","1277387.834203","-111056.870189","105.205271","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5682","passing","EPSG","4326","EPSG","5682","1.0","-1.0","0.0","1942839.357237","-110988.891985","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5683","passing","EPSG","4326","EPSG","5683","1.0","-1.0","0.0","2606757.139676","-111657.546981","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5684","passing","EPSG","4326","EPSG","5684","1.0","-1.0","0.0","3268175.410532","-112647.043075","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5685","passing","EPSG","4326","EPSG","5685","1.0","-1.0","0.0","3926105.663731","-113971.626991","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 5685","passing","EPSG","4326","EPSG","5685","1.0","-1.0","0.0","3926105.407353","-113971.631576","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 5700","passing","EPSG","4326","EPSG","5700","1.0","-1.0","0.0","722561.736479","-9885331.913357","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5836","passing","EPSG","4326","EPSG","5836","1.0","-1.0","0.0","-4079577.277094","-140545.733767","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5837","passing","EPSG","4326","EPSG","5837","1.0","-1.0","0.0","-7068672.129135","-199101.756647","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5842","passing","EPSG","4326","EPSG","5842","1.0","-1.0","0.0","-731474.867088","9887387.177554","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5844","passing","EPSG","4326","EPSG","5844","1.0","-1.0","0.0","-2875733.012484","9873462.794034","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 5844","passing","EPSG","4326","EPSG","5844","1.0","-1.0","0.0","-2875819.689774","9873459.779438","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 5858","passing","EPSG","4326","EPSG","5858","1.0","-1.0","0.0","7306339.329109","9819560.962598","43.595055","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5875","passing","EPSG","4326","EPSG","5875","1.0","-1.0","0.0","1.4018870379212E7","9516155.569781","43.595055","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5876","passing","EPSG","4326","EPSG","5876","1.0","-1.0","0.0","1.1625697068445E7","9668531.835079","43.595055","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5877","passing","EPSG","4326","EPSG","5877","1.0","-1.0","0.0","9876434.720248","9744384.218697","43.595055","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5879","passing","EPSG","4326","EPSG","5879","1.0","-1.0","0.0","-4967358.421418","9846233.706565","127.228808","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5880","failing","EPSG","4326","EPSG","5880","1.0","-1.0","0.0","1.1121359384426E7","9838148.516189","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 5880","passing","EPSG","4326","EPSG","5880","1.0","-1.0","0.0","1.1121359384426E7","9838148.516189","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5890","passing","EPSG","4326","EPSG","5890","1.0","-1.0","0.0","-1.2544389192519E7","-218963.12784","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5921","passing","EPSG","4326","EPSG","5921","1.0","-1.0","0.0","1.1784451069194E7","5431623.127119","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5922","passing","EPSG","4326","EPSG","5922","1.0","-1.0","0.0","8021047.089439","-8741142.248861","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -2295,12 +2295,12 @@ "4326 -> 6124","passing","EPSG","4326","EPSG","6124","1.0","-1.0","0.0","1.8472791653935E7","1.691798133122E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6125","passing","EPSG","4326","EPSG","6125","1.0","-1.0","0.0","4.8704688061606E7","-4479479.470868","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6141","passing","EPSG","4326","EPSG","6141","1.0","-1.0","0.0","-2.6880029744881E7","1409281.65746","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6204","passing","EPSG","4326","EPSG","6204","1.0","-1.0","0.0","-1772261.486107","-118218.032798","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 6204","passing","EPSG","4326","EPSG","6204","1.0","-1.0","0.0","-1772265.500717","-118218.131606","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 6210","passing","EPSG","4326","EPSG","6210","1.0","-1.0","0.0","6282890.195008","-159676.099533","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6211","passing","EPSG","4326","EPSG","6211","1.0","-1.0","0.0","5366513.929932","-144620.452142","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6307","passing","EPSG","4326","EPSG","6307","1.0","-1.0","0.0","7952042.830285","-479128.830527","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6312","passing","EPSG","4326","EPSG","6312","1.0","-1.0","0.0","-3563786.1372985374","-3630543.658782971","-13.786709","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6316","passing","EPSG","4326","EPSG","6316","1.0","-1.0","0.0","5227738.513893","-118218.032798","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 6312","passing","EPSG","4326","EPSG","6312","1.0","-1.0","0.0","-3563988.213616","-3630551.404544","-13.786709","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 6316","passing","EPSG","4326","EPSG","6316","1.0","-1.0","0.0","5227734.499283","-118218.131606","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 6328","passing","EPSG","4326","EPSG","6328","1.0","-1.0","0.0","-618308.573583","-1.9883683216619E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6329","passing","EPSG","4326","EPSG","6329","1.0","-1.0","0.0","54603.316023","-1.9885128053335E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6330","passing","EPSG","4326","EPSG","6330","1.0","-1.0","0.0","722561.736479","-1.9885331913357E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -2325,8 +2325,8 @@ "4326 -> 6352","passing","EPSG","4326","EPSG","6352","1.0","-1.0","0.0","3.9160440866762E7","1.6959426921844E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6353","passing","EPSG","4326","EPSG","6353","1.0","-1.0","0.0","1.9616403349184E7","1.9792787171974E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6354","passing","EPSG","4326","EPSG","6354","1.0","-1.0","0.0","2.4514276464516E7","1.7857445108058E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6355","passing","EPSG","4326","EPSG","6355","1.0","-1.0","0.0","1.7159919726823E7","-3961313.962369","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6356","passing","EPSG","4326","EPSG","6356","1.0","-1.0","0.0","1.8379967073642E7","-3952167.354801","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 6355","error","EPSG","4326","EPSG","6355","1.0","-1.0","0.0","1.7159919726823E7","-3961313.962369","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 6356","error","EPSG","4326","EPSG","6356","1.0","-1.0","0.0","1.8379967073642E7","-3952167.354801","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 6362","passing","EPSG","4326","EPSG","6362","1.0","-1.0","0.0","1.3914521879767E7","2781068.978579","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6366","passing","EPSG","4326","EPSG","6366","1.0","-1.0","0.0","9380117.510219","-1.9757704843637E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6367","passing","EPSG","4326","EPSG","6367","1.0","-1.0","0.0","1.0990756729525E7","-1.9694702609941E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -2334,16 +2334,16 @@ "4326 -> 6369","passing","EPSG","4326","EPSG","6369","1.0","-1.0","0.0","1.635961359846E7","-1.9271652378892E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6370","passing","EPSG","4326","EPSG","6370","1.0","-1.0","0.0","9821617.197798","-6559044.245001","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6372","passing","EPSG","4326","EPSG","6372","1.0","-1.0","0.0","1.3914521879767E7","2781068.978579","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6381","passing","EPSG","4326","EPSG","6381","1.0","-1.0","0.0","-1972898.181686","-117628.224271","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6382","passing","EPSG","4326","EPSG","6382","1.0","-1.0","0.0","-2331997.928283","-120098.5296","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6383","passing","EPSG","4326","EPSG","6383","1.0","-1.0","0.0","-2699220.313854","-123021.9434","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6384","passing","EPSG","4326","EPSG","6384","1.0","-1.0","0.0","-3075992.844982","-126448.927388","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6385","passing","EPSG","4326","EPSG","6385","1.0","-1.0","0.0","-3463899.626567","-130441.693098","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6386","passing","EPSG","4326","EPSG","6386","1.0","-1.0","0.0","-3864711.786952","-135076.651919","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6387","passing","EPSG","4326","EPSG","6387","1.0","-1.0","0.0","-4280421.94678","-140447.416996","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 6381","passing","EPSG","4326","EPSG","6381","1.0","-1.0","0.0","-1972902.205351","-117628.322805","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 6382","passing","EPSG","4326","EPSG","6382","1.0","-1.0","0.0","-2332010.397943","-120098.876939","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 6383","passing","EPSG","4326","EPSG","6383","1.0","-1.0","0.0","-2699254.749476","-123023.020279","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 6384","passing","EPSG","4326","EPSG","6384","1.0","-1.0","0.0","-3076079.501602","-126451.938699","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 6385","passing","EPSG","4326","EPSG","6385","1.0","-1.0","0.0","-3464101.651275","-130449.430062","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 6386","passing","EPSG","4326","EPSG","6386","1.0","-1.0","0.0","-3865153.654693","-135095.177023","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 6387","passing","EPSG","4326","EPSG","6387","1.0","-1.0","0.0","-4281337.678587","-140489.215701","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 6391","passing","EPSG","4326","EPSG","6391","1.0","-1.0","0.0","3.3473213330984E7","1761194.810999","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 6393","passing","EPSG","4326","EPSG","6393","1.0","-1.0","0.0","7104914.414304","1.1599667194798E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6394","failing","EPSG","4326","EPSG","6394","1.0","-1.0","0.0","2.1299477541839E7","-9945672.888623","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 6394","passing","EPSG","4326","EPSG","6394","1.0","-1.0","0.0","2.1299477541839E7","-9945672.888623","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6403","passing","EPSG","4326","EPSG","6403","1.0","-1.0","0.0","8328717.21702","1.4116821977524E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6410","passing","EPSG","4326","EPSG","6410","1.0","-1.0","0.0","1.1131856190038E7","1298569.855381","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6411","passing","EPSG","4326","EPSG","6411","1.0","-1.0","0.0","3.6521764850117E7","4260391.267194","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" @@ -2370,25 +2370,25 @@ "4326 -> 6432","passing","EPSG","4326","EPSG","6432","1.0","-1.0","0.0","4.1300893148666E7","1.0805178197923E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 6433","passing","EPSG","4326","EPSG","6433","1.0","-1.0","0.0","9609648.833132","-675630.039935","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6434","passing","EPSG","4326","EPSG","6434","1.0","-1.0","0.0","3.152765621337E7","-2216629.556017","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6435","passing","EPSG","4326","EPSG","6435","1.0","-1.0","0.0","1.2960400053583E7","-4584092.979322","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6436","passing","EPSG","4326","EPSG","6436","1.0","-1.0","0.0","4.2520912509465E7","-1.5039645049659E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6437","passing","EPSG","4326","EPSG","6437","1.0","-1.0","0.0","1.5029510779743E7","-3165551.699573","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6438","passing","EPSG","4326","EPSG","6438","1.0","-1.0","0.0","4.9309319950207E7","-1.0385647534347E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 6435","passing","EPSG","4326","EPSG","6435","1.0","-1.0","0.0","13929727.098412","-4708319.149141","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 6436","passing","EPSG","4326","EPSG","6436","1.0","-1.0","0.0","45701112.989039","-15447210.408475","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 6437","error","EPSG","4326","EPSG","6437","1.0","-1.0","0.0","1.5029510779743E7","-3165551.699573","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 6438","error","EPSG","4326","EPSG","6438","1.0","-1.0","0.0","4.9309319950207E7","-1.0385647534347E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 6439","passing","EPSG","4326","EPSG","6439","1.0","-1.0","0.0","1.0071974621001E7","811782.97242","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6440","passing","EPSG","4326","EPSG","6440","1.0","-1.0","0.0","1.0550650155667E7","427782.799905","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6441","passing","EPSG","4326","EPSG","6441","1.0","-1.0","0.0","3.461492471905E7","1403484.069356","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6442","passing","EPSG","4326","EPSG","6442","1.0","-1.0","0.0","1.5442048203015E7","-3186367.239404","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6443","passing","EPSG","4326","EPSG","6443","1.0","-1.0","0.0","5.0662786479725E7","-1.0453939851278E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6444","passing","EPSG","4326","EPSG","6444","1.0","-1.0","0.0","1.5511530289253E7","-3817662.34613","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6445","passing","EPSG","4326","EPSG","6445","1.0","-1.0","0.0","5.0890745624323E7","-1.2525113880594E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6446","passing","EPSG","4326","EPSG","6446","1.0","-1.0","0.0","1.6884448431364E7","-3863405.498204","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6447","passing","EPSG","4326","EPSG","6447","1.0","-1.0","0.0","5.5395061228234E7","-1.2675189538692E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6454","passing","EPSG","4326","EPSG","6454","1.0","-1.0","0.0","1.8509247999883E7","-4716583.113964","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6455","passing","EPSG","4326","EPSG","6455","1.0","-1.0","0.0","6.0725757812949E7","-1.547432309973E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6458","passing","EPSG","4326","EPSG","6458","1.0","-1.0","0.0","1.6980563567191E7","-4483369.918208","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6459","passing","EPSG","4326","EPSG","6459","1.0","-1.0","0.0","5.5710398969693E7","-1.4709189473654E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6460","passing","EPSG","4326","EPSG","6460","1.0","-1.0","0.0","1.8470937971857E7","-4522155.488717","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6461","passing","EPSG","4326","EPSG","6461","1.0","-1.0","0.0","6.0600068996002E7","-1.4836438466231E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 6442","error","EPSG","4326","EPSG","6442","1.0","-1.0","0.0","1.5442048203015E7","-3186367.239404","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 6443","error","EPSG","4326","EPSG","6443","1.0","-1.0","0.0","5.0662786479725E7","-1.0453939851278E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 6444","error","EPSG","4326","EPSG","6444","1.0","-1.0","0.0","1.5511530289253E7","-3817662.34613","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 6445","error","EPSG","4326","EPSG","6445","1.0","-1.0","0.0","5.0890745624323E7","-1.2525113880594E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 6446","error","EPSG","4326","EPSG","6446","1.0","-1.0","0.0","1.6884448431364E7","-3863405.498204","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 6447","error","EPSG","4326","EPSG","6447","1.0","-1.0","0.0","5.5395061228234E7","-1.2675189538692E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 6454","error","EPSG","4326","EPSG","6454","1.0","-1.0","0.0","1.8509247999883E7","-4716583.113964","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 6455","error","EPSG","4326","EPSG","6455","1.0","-1.0","0.0","6.0725757812949E7","-1.547432309973E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 6458","error","EPSG","4326","EPSG","6458","1.0","-1.0","0.0","1.6980563567191E7","-4483369.918208","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 6459","error","EPSG","4326","EPSG","6459","1.0","-1.0","0.0","5.5710398969693E7","-1.4709189473654E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 6460","error","EPSG","4326","EPSG","6460","1.0","-1.0","0.0","1.8470937971857E7","-4522155.488717","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 6461","error","EPSG","4326","EPSG","6461","1.0","-1.0","0.0","6.0600068996002E7","-1.4836438466231E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 6462","passing","EPSG","4326","EPSG","6462","1.0","-1.0","0.0","1.2493754958641E7","2708853.657912","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6463","passing","EPSG","4326","EPSG","6463","1.0","-1.0","0.0","4.0989927726809E7","8887297.375966","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 6464","passing","EPSG","4326","EPSG","6464","1.0","-1.0","0.0","1.1460553625321E7","1661745.543903","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -2407,13 +2407,13 @@ "4326 -> 6477","passing","EPSG","4326","EPSG","6477","1.0","-1.0","0.0","3.8398005554391E7","4076115.015849","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 6478","passing","EPSG","4326","EPSG","6478","1.0","-1.0","0.0","1.1569510967566E7","1074486.392019","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6479","passing","EPSG","4326","EPSG","6479","1.0","-1.0","0.0","3.7957637232722E7","3525210.77115","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6480","passing","EPSG","4326","EPSG","6480","1.0","-1.0","0.0","1.1324154703457E7","-5116571.085152","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6481","passing","EPSG","4326","EPSG","6481","1.0","-1.0","0.0","1.1180772997795E7","-5141094.694271","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6482","passing","EPSG","4326","EPSG","6482","1.0","-1.0","0.0","1.1480217073422E7","-5055926.342392","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6483","passing","EPSG","4326","EPSG","6483","1.0","-1.0","0.0","1.0950069857247E7","-5128313.037419","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6484","passing","EPSG","4326","EPSG","6484","1.0","-1.0","0.0","3.5925354189983E7","-1.6825140356933E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6485","passing","EPSG","4326","EPSG","6485","1.0","-1.0","0.0","1.2019814649506E7","-5053556.85185","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6486","passing","EPSG","4326","EPSG","6486","1.0","-1.0","0.0","3.9435008562586E7","-1.6579877771445E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 6480","passing","EPSG","4326","EPSG","6480","1.0","-1.0","0.0","11671689.678538","-5152007.650725","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 6481","passing","EPSG","4326","EPSG","6481","1.0","-1.0","0.0","11465183.093366","-5169053.574542","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 6482","passing","EPSG","4326","EPSG","6482","1.0","-1.0","0.0","11905005.691833","-5100943.641776","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 6483","passing","EPSG","4326","EPSG","6483","1.0","-1.0","0.0","11264435.163777","-5159779.714468","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 6484","passing","EPSG","4326","EPSG","6484","1.0","-1.0","0.0","36956734.366491","-16928377.279884","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 6485","passing","EPSG","4326","EPSG","6485","1.0","-1.0","0.0","12430605.282352","-5096804.786367","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 6486","passing","EPSG","4326","EPSG","6486","1.0","-1.0","0.0","40782744.163849","-16721767.036607","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 6487","passing","EPSG","4326","EPSG","6487","1.0","-1.0","0.0","9969626.935369","-276195.787551","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6488","passing","EPSG","4326","EPSG","6488","1.0","-1.0","0.0","3.2708684370125E7","-906152.346323","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 6489","passing","EPSG","4326","EPSG","6489","1.0","-1.0","0.0","9582487.179385","-1098419.84739","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -2433,24 +2433,24 @@ "4326 -> 6503","passing","EPSG","4326","EPSG","6503","1.0","-1.0","0.0","3.9057025184185E7","6357392.570651","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 6504","passing","EPSG","4326","EPSG","6504","1.0","-1.0","0.0","1.1867181831423E7","1975209.580327","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6505","passing","EPSG","4326","EPSG","6505","1.0","-1.0","0.0","3.8934245725294E7","6480333.431424","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6506","passing","EPSG","4326","EPSG","6506","1.0","-1.0","0.0","1.8772001648449E7","-3937156.383224","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6507","passing","EPSG","4326","EPSG","6507","1.0","-1.0","0.0","6.1587808741621E7","-1.2917153900627E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 6506","error","EPSG","4326","EPSG","6506","1.0","-1.0","0.0","1.8772001648449E7","-3937156.383224","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 6507","error","EPSG","4326","EPSG","6507","1.0","-1.0","0.0","6.1587808741621E7","-1.2917153900627E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 6514","passing","EPSG","4326","EPSG","6514","1.0","-1.0","0.0","1.2324918268659E7","4366651.863837","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6515","passing","EPSG","4326","EPSG","6515","1.0","-1.0","0.0","4.0436083558584E7","1.432628564251E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 6516","passing","EPSG","4326","EPSG","6516","1.0","-1.0","0.0","1.1859582682383E7","2563845.950141","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6517","passing","EPSG","4326","EPSG","6517","1.0","-1.0","0.0","3.8909314183819E7","8411551.254754","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6524","passing","EPSG","4326","EPSG","6524","1.0","-1.0","0.0","1.1862074088415E7","-5033721.498112","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6525","passing","EPSG","4326","EPSG","6525","1.0","-1.0","0.0","3.8917488071742E7","-1.6514801281721E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6526","passing","EPSG","4326","EPSG","6526","1.0","-1.0","0.0","1.2603413402636E7","-4662963.007428","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6527","passing","EPSG","4326","EPSG","6527","1.0","-1.0","0.0","4.1349698805148E7","-1.5298404466869E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6534","passing","EPSG","4326","EPSG","6534","1.0","-1.0","0.0","1.3411859131067E7","-4823650.932015","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6535","passing","EPSG","4326","EPSG","6535","1.0","-1.0","0.0","4.4002074498844E7","-1.5825594766119E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6536","passing","EPSG","4326","EPSG","6536","1.0","-1.0","0.0","1.2603413402636E7","-4662963.007428","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6537","passing","EPSG","4326","EPSG","6537","1.0","-1.0","0.0","4.1349698805148E7","-1.5298404466869E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 6524","passing","EPSG","4326","EPSG","6524","1.0","-1.0","0.0","12385210.049457","-5091569.861759","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 6525","passing","EPSG","4326","EPSG","6525","1.0","-1.0","0.0","40633809.970593","-16704592.121454","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 6526","passing","EPSG","4326","EPSG","6526","1.0","-1.0","0.0","13434933.821414","-4765298.621421","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 6527","passing","EPSG","4326","EPSG","6527","1.0","-1.0","0.0","44077778.712423","-15634150.560445","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 6534","passing","EPSG","4326","EPSG","6534","1.0","-1.0","0.0","14594179.389600","-4984192.934623","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 6535","passing","EPSG","4326","EPSG","6535","1.0","-1.0","0.0","47881070.213714","-16352306.319676","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 6536","passing","EPSG","4326","EPSG","6536","1.0","-1.0","0.0","13434933.821414","-4765298.621421","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 6537","passing","EPSG","4326","EPSG","6537","1.0","-1.0","0.0","44077778.712423","-15634150.560445","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 6538","passing","EPSG","4326","EPSG","6538","1.0","-1.0","0.0","9687036.766689","-681351.175466","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6539","passing","EPSG","4326","EPSG","6539","1.0","-1.0","0.0","3.1781553125378E7","-2235399.648173","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6540","passing","EPSG","4326","EPSG","6540","1.0","-1.0","0.0","1.4237282921893E7","-4857039.255734","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6541","passing","EPSG","4326","EPSG","6541","1.0","-1.0","0.0","4.6710152386576E7","-1.5935136291522E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 6540","passing","EPSG","4326","EPSG","6540","1.0","-1.0","0.0","15922864.775165","-5116346.421875","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 6541","passing","EPSG","4326","EPSG","6541","1.0","-1.0","0.0","52240265.516853","-16785879.885769","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 6542","passing","EPSG","4326","EPSG","6542","1.0","-1.0","0.0","1.0212602585283E7","-17652.610423","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6543","passing","EPSG","4326","EPSG","6543","1.0","-1.0","0.0","3.3505846979267E7","-57915.272695","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 6544","passing","EPSG","4326","EPSG","6544","1.0","-1.0","0.0","1.2048562892627E7","2902217.376716","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -2476,8 +2476,8 @@ "4326 -> 6564","passing","EPSG","4326","EPSG","6564","1.0","-1.0","0.0","1.0308283550952E7","-220512.975756","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6565","passing","EPSG","4326","EPSG","6565","1.0","-1.0","0.0","3.3819760283415E7","-723466.321292","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 6566","passing","EPSG","4326","EPSG","6566","1.0","-1.0","0.0","7952042.830285","-479128.830527","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6567","passing","EPSG","4326","EPSG","6567","1.0","-1.0","0.0","1.1612262480686E7","-4874528.079031","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6568","passing","EPSG","4326","EPSG","6568","1.0","-1.0","0.0","3.8097897822019E7","-1.5992514205953E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 6567","passing","EPSG","4326","EPSG","6567","1.0","-1.0","0.0","12121505.329748","-4930522.093156","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 6568","passing","EPSG","4326","EPSG","6568","1.0","-1.0","0.0","39768638.735981","-16176221.233964","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 6569","passing","EPSG","4326","EPSG","6569","1.0","-1.0","0.0","1.0339890150895E7","211156.727684","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6570","passing","EPSG","4326","EPSG","6570","1.0","-1.0","0.0","3.3923524117109E7","692771.416287","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 6571","passing","EPSG","4326","EPSG","6571","1.0","-1.0","0.0","1.1994495041044E7","2695771.443861","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -2498,8 +2498,8 @@ "4326 -> 6586","passing","EPSG","4326","EPSG","6586","1.0","-1.0","0.0","3.7621725229221E7","2.1564160793856E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 6587","passing","EPSG","4326","EPSG","6587","1.0","-1.0","0.0","1.1820487659605E7","5766686.935604","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6588","passing","EPSG","4326","EPSG","6588","1.0","-1.0","0.0","3.8781049929886E7","1.8919538720896E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6589","passing","EPSG","4326","EPSG","6589","1.0","-1.0","0.0","1.2316477845608E7","-5043906.115058","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6590","passing","EPSG","4326","EPSG","6590","1.0","-1.0","0.0","4.0408311065166E7","-1.6548215312486E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 6589","passing","EPSG","4326","EPSG","6589","1.0","-1.0","0.0","12915305.224043","-5112088.044691","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 6590","passing","EPSG","4326","EPSG","6590","1.0","-1.0","0.0","42372963.889249","-16771908.859956","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 6591","passing","EPSG","4326","EPSG","6591","1.0","-1.0","0.0","9766541.186236","106793.672654","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6592","passing","EPSG","4326","EPSG","6592","1.0","-1.0","0.0","1.319415649693E7","1855008.196457","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6593","passing","EPSG","4326","EPSG","6593","1.0","-1.0","0.0","4.3287828440678E7","6085972.724876","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" @@ -2531,13 +2531,13 @@ "4326 -> 6634","passing","EPSG","4326","EPSG","6634","1.0","-1.0","0.0","2772080.292418","-1.9878255185912E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6635","passing","EPSG","4326","EPSG","6635","1.0","-1.0","0.0","3498135.612029","-1.9872858071015E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6636","passing","EPSG","4326","EPSG","6636","1.0","-1.0","0.0","1392989.214538","-9884306.27929","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6646","passing","EPSG","4326","EPSG","6646","1.0","-1.0","0.0","-4896771.587929","-3368320.183843","-172.547504","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 6646","passing","EPSG","4326","EPSG","6646","1.0","-1.0","0.0","-4901477.726460","-3368582.212798","-172.547504","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 6688","passing","EPSG","4326","EPSG","6688","1.0","-1.0","0.0","-7480365.932792","-1.9785573547405E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6689","passing","EPSG","4326","EPSG","6689","1.0","-1.0","0.0","-6306321.314799","-1.9815427066946E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6690","passing","EPSG","4326","EPSG","6690","1.0","-1.0","0.0","-5282890.195008","-1.9836253786344E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6691","passing","EPSG","4326","EPSG","6691","1.0","-1.0","0.0","-4366513.929932","-1.9851309433735E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6692","passing","EPSG","4326","EPSG","6692","1.0","-1.0","0.0","-3528360.482014","-1.9862407599484E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6703","passing","EPSG","4326","EPSG","6703","1.0","-1.0","0.0","9065466.60141","9775868.400305","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 6703","passing","EPSG","4326","EPSG","6703","1.0","-1.0","0.0","9144451.174081","9769532.579263","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 6707","passing","EPSG","4326","EPSG","6707","1.0","-1.0","0.0","-392989.214538","-111623.606587","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6708","passing","EPSG","4326","EPSG","6708","1.0","-1.0","0.0","-1073447.882706","-113937.036743","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6709","passing","EPSG","4326","EPSG","6709","1.0","-1.0","0.0","-1772080.292418","-117674.699966","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -2572,7 +2572,7 @@ "4326 -> 6855","passing","EPSG","4326","EPSG","6855","1.0","-1.0","0.0","3.9627436925249E7","1.9572181838775E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 6867","passing","EPSG","4326","EPSG","6867","1.0","-1.0","0.0","1.2428695502962E7","5736547.563465","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6868","passing","EPSG","4326","EPSG","6868","1.0","-1.0","0.0","4.0776560049083E7","1.8820694105857E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6870","passing","EPSG","4326","EPSG","6870","1.0","-1.0","0.0","-1654864.258411","-116991.03987","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 6870","passing","EPSG","4326","EPSG","6870","1.0","-1.0","0.0","-1654866.936011","-116991.102518","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 6875","passing","EPSG","4326","EPSG","6875","1.0","-1.0","0.0","5769880.297331","-112488.898768","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6876","passing","EPSG","4326","EPSG","6876","1.0","-1.0","0.0","1768032.34585","-112657.885597","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6879","passing","EPSG","4326","EPSG","6879","1.0","-1.0","0.0","1.1431777681828E7","1297424.634259","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -2590,8 +2590,8 @@ "4326 -> 6932","passing","EPSG","4326","EPSG","6932","1.0","-1.0","0.0","155873.556203","8929990.054097","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6933","passing","EPSG","4326","EPSG","6933","1.0","-1.0","0.0","96486.280251","-127566.985295","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6962","passing","EPSG","4326","EPSG","6962","1.0","-1.0","0.0","-2677190.737666","-4766506.168209","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6984","passing","EPSG","4326","EPSG","6984","1.0","-1.0","0.0","-3837638.237021","-3019405.091929","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6991","passing","EPSG","4326","EPSG","6991","1.0","-1.0","0.0","-3837638.237021","-3019405.091929","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 6984","passing","EPSG","4326","EPSG","6984","1.0","-1.0","0.0","-3837999.426858","-3019419.896701","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 6991","passing","EPSG","4326","EPSG","6991","1.0","-1.0","0.0","-3837999.426858","-3019419.896701","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 7005","passing","EPSG","4326","EPSG","7005","1.0","-1.0","0.0","-4079520.922659","-141015.654399","139.091251","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7006","passing","EPSG","4326","EPSG","7006","1.0","-1.0","0.0","-4967162.984917","-154643.706977","139.091251","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7007","passing","EPSG","4326","EPSG","7007","1.0","-1.0","0.0","-5951028.442604","-173344.198069","139.091251","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -2621,226 +2621,226 @@ "4326 -> 7124","passing","EPSG","4326","EPSG","7124","1.0","-1.0","0.0","3.8442698679745E7","1.1798738834768E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7126","passing","EPSG","4326","EPSG","7126","1.0","-1.0","0.0","3.9008939778082E7","1.4331434109575E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7127","passing","EPSG","4326","EPSG","7127","1.0","-1.0","0.0","3.9113941941547E7","1.2682964330326E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7142","passing","EPSG","4326","EPSG","7142","1.0","-1.0","0.0","-3887709.343918","-3519729.207075","109.910871","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7257","passing","EPSG","4326","EPSG","7257","1.0","-1.0","0.0","1.6785126882719E7","-5017818.325119","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7258","passing","EPSG","4326","EPSG","7258","1.0","-1.0","0.0","5.5069203781053E7","-1.6462625621663E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7259","passing","EPSG","4326","EPSG","7259","1.0","-1.0","0.0","1.6831542894834E7","-5059205.696646","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7260","passing","EPSG","4326","EPSG","7260","1.0","-1.0","0.0","5.5221486980802E7","-1.6598410689745E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7261","passing","EPSG","4326","EPSG","7261","1.0","-1.0","0.0","1.7209011773599E7","-4869004.979394","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7262","passing","EPSG","4326","EPSG","7262","1.0","-1.0","0.0","5.6459899460548E7","-1.5974393836561E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7263","passing","EPSG","4326","EPSG","7263","1.0","-1.0","0.0","1.7920662241704E7","-5070164.800854","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7264","passing","EPSG","4326","EPSG","7264","1.0","-1.0","0.0","5.8794706037992E7","-1.6634365684135E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7265","passing","EPSG","4326","EPSG","7265","1.0","-1.0","0.0","1.6995556996618E7","-4973833.522826","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7266","passing","EPSG","4326","EPSG","7266","1.0","-1.0","0.0","5.575958991307E7","-1.631831881614E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7267","passing","EPSG","4326","EPSG","7267","1.0","-1.0","0.0","1.7523740507246E7","-4953264.495864","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7268","passing","EPSG","4326","EPSG","7268","1.0","-1.0","0.0","5.7492471980857E7","-1.6250835266847E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7269","passing","EPSG","4326","EPSG","7269","1.0","-1.0","0.0","1.7426092740471E7","-4881137.56991","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7270","passing","EPSG","4326","EPSG","7270","1.0","-1.0","0.0","5.7172105932695E7","-1.6014198843947E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7271","passing","EPSG","4326","EPSG","7271","1.0","-1.0","0.0","1.7597172046532E7","-5046196.751334","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7272","passing","EPSG","4326","EPSG","7272","1.0","-1.0","0.0","5.7733388622665E7","-1.6555730508335E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7273","passing","EPSG","4326","EPSG","7273","1.0","-1.0","0.0","1.7474745528931E7","-5055963.015421","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7274","passing","EPSG","4326","EPSG","7274","1.0","-1.0","0.0","5.7331727622834E7","-1.6587771993094E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7275","passing","EPSG","4326","EPSG","7275","1.0","-1.0","0.0","1.7089819461183E7","-4768023.578631","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7276","passing","EPSG","4326","EPSG","7276","1.0","-1.0","0.0","5.6068849348899E7","-1.5643090690892E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7277","passing","EPSG","4326","EPSG","7277","1.0","-1.0","0.0","1.78452819983E7","-4921489.997195","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7278","passing","EPSG","4326","EPSG","7278","1.0","-1.0","0.0","5.8547396022755E7","-1.6146588432464E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7279","passing","EPSG","4326","EPSG","7279","1.0","-1.0","0.0","1.7572698539083E7","-5017078.450975","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7280","passing","EPSG","4326","EPSG","7280","1.0","-1.0","0.0","5.7653095123641E7","-1.6460198217908E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7281","passing","EPSG","4326","EPSG","7281","1.0","-1.0","0.0","1.7523550392945E7","-4786686.501065","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7282","passing","EPSG","4326","EPSG","7282","1.0","-1.0","0.0","5.7491848247519E7","-1.5704320628911E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7283","passing","EPSG","4326","EPSG","7283","1.0","-1.0","0.0","1.7820166795698E7","-4842323.437199","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7284","passing","EPSG","4326","EPSG","7284","1.0","-1.0","0.0","5.8464997228886E7","-1.5886856143545E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7285","passing","EPSG","4326","EPSG","7285","1.0","-1.0","0.0","1.6761871303016E7","-4805573.850295","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7286","passing","EPSG","4326","EPSG","7286","1.0","-1.0","0.0","5.4992906099979E7","-1.5766286873842E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7287","passing","EPSG","4326","EPSG","7287","1.0","-1.0","0.0","1.7113811694569E7","-4874869.716826","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7288","passing","EPSG","4326","EPSG","7288","1.0","-1.0","0.0","5.6147563867932E7","-1.5993635062621E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7289","passing","EPSG","4326","EPSG","7289","1.0","-1.0","0.0","1.6785159971848E7","-5095567.615196","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7290","passing","EPSG","4326","EPSG","7290","1.0","-1.0","0.0","5.506931234097E7","-1.6717708084189E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7291","passing","EPSG","4326","EPSG","7291","1.0","-1.0","0.0","1.7745434498304E7","-4810324.07887","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7292","passing","EPSG","4326","EPSG","7292","1.0","-1.0","0.0","5.821981301652E7","-1.5781871582092E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7293","passing","EPSG","4326","EPSG","7293","1.0","-1.0","0.0","1.7209130553593E7","-5052246.981052","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7294","passing","EPSG","4326","EPSG","7294","1.0","-1.0","0.0","5.6460289157912E7","-1.6575580303668E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7295","passing","EPSG","4326","EPSG","7295","1.0","-1.0","0.0","1.6831659032034E7","-4876024.85471","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7296","passing","EPSG","4326","EPSG","7296","1.0","-1.0","0.0","5.5221868007599E7","-1.5997424877493E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7297","passing","EPSG","4326","EPSG","7297","1.0","-1.0","0.0","1.7920591521106E7","-5014623.748948","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7298","passing","EPSG","4326","EPSG","7298","1.0","-1.0","0.0","5.8794474015497E7","-1.6452144749672E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7299","passing","EPSG","4326","EPSG","7299","1.0","-1.0","0.0","1.7426109926048E7","-5092113.039051","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7300","passing","EPSG","4326","EPSG","7300","1.0","-1.0","0.0","5.7172162315709E7","-1.6706374195619E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7301","passing","EPSG","4326","EPSG","7301","1.0","-1.0","0.0","1.8097602234827E7","-4824918.998251","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7302","passing","EPSG","4326","EPSG","7302","1.0","-1.0","0.0","5.9375216665429E7","-1.5829755080094E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7303","passing","EPSG","4326","EPSG","7303","1.0","-1.0","0.0","1.7137558486681E7","-5014967.353227","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7304","passing","EPSG","4326","EPSG","7304","1.0","-1.0","0.0","5.6225473135054E7","-1.6453272058046E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7305","passing","EPSG","4326","EPSG","7305","1.0","-1.0","0.0","1.72811094841E7","-4972973.101316","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7306","passing","EPSG","4326","EPSG","7306","1.0","-1.0","0.0","5.6696440032418E7","-1.6315495916566E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7307","passing","EPSG","4326","EPSG","7307","1.0","-1.0","0.0","1.7185277077624E7","-4939893.579411","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7308","passing","EPSG","4326","EPSG","7308","1.0","-1.0","0.0","5.638202987884E7","-1.6206967518451E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7309","passing","EPSG","4326","EPSG","7309","1.0","-1.0","0.0","1.7353326903063E7","-4760492.303763","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7310","passing","EPSG","4326","EPSG","7310","1.0","-1.0","0.0","5.6933373347798E7","-1.5618381833262E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7311","passing","EPSG","4326","EPSG","7311","1.0","-1.0","0.0","1.7019216897323E7","-4941845.063132","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7312","passing","EPSG","4326","EPSG","7312","1.0","-1.0","0.0","5.5837214103969E7","-1.6213370011293E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7313","passing","EPSG","4326","EPSG","7313","1.0","-1.0","0.0","1.7353395354522E7","-5026963.859686","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7314","passing","EPSG","4326","EPSG","7314","1.0","-1.0","0.0","5.6933597925628E7","-1.6492630596319E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7315","passing","EPSG","4326","EPSG","7315","1.0","-1.0","0.0","1.7042682560348E7","-5043039.665224","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7316","passing","EPSG","4326","EPSG","7316","1.0","-1.0","0.0","5.591420103341E7","-1.6545372634989E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7317","passing","EPSG","4326","EPSG","7317","1.0","-1.0","0.0","1.7256876386175E7","-4838346.274556","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7318","passing","EPSG","4326","EPSG","7318","1.0","-1.0","0.0","5.6616935276975E7","-1.5873807735774E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7319","passing","EPSG","4326","EPSG","7319","1.0","-1.0","0.0","1.7820325014351E7","-5092183.722245","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7320","passing","EPSG","4326","EPSG","7320","1.0","-1.0","0.0","5.8465516317917E7","-1.67066060954E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7321","passing","EPSG","4326","EPSG","7321","1.0","-1.0","0.0","1.6808406045484E7","-4991342.17305","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7322","passing","EPSG","4326","EPSG","7322","1.0","-1.0","0.0","5.5145578834227E7","-1.6375761779416E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7323","passing","EPSG","4326","EPSG","7323","1.0","-1.0","0.0","1.6971854345882E7","-4805952.839579","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7324","passing","EPSG","4326","EPSG","7324","1.0","-1.0","0.0","5.5681825466448E7","-1.5767530274518E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7325","passing","EPSG","4326","EPSG","7325","1.0","-1.0","0.0","1.7185090686287E7","-4845469.6723","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7326","passing","EPSG","4326","EPSG","7326","1.0","-1.0","0.0","5.6381418359926E7","-1.5897178416537E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7327","passing","EPSG","4326","EPSG","7327","1.0","-1.0","0.0","1.7353395354522E7","-4910377.404406","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7328","passing","EPSG","4326","EPSG","7328","1.0","-1.0","0.0","5.6933597925628E7","-1.6110129867622E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7329","passing","EPSG","4326","EPSG","7329","1.0","-1.0","0.0","1.7996101784756E7","-4846833.422274","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7330","passing","EPSG","4326","EPSG","7330","1.0","-1.0","0.0","5.9042210605486E7","-1.590165265291E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7331","passing","EPSG","4326","EPSG","7331","1.0","-1.0","0.0","1.7019116226351E7","-5108387.760381","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7332","passing","EPSG","4326","EPSG","7332","1.0","-1.0","0.0","5.5836883819286E7","-1.6759768843849E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7333","passing","EPSG","4326","EPSG","7333","1.0","-1.0","0.0","1.7971023659486E7","-5100802.256602","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7334","passing","EPSG","4326","EPSG","7334","1.0","-1.0","0.0","5.8959933456165E7","-1.6734882070201E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7335","passing","EPSG","4326","EPSG","7335","1.0","-1.0","0.0","1.764647302465E7","-5104514.412299","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7336","passing","EPSG","4326","EPSG","7336","1.0","-1.0","0.0","5.7895136915039E7","-1.6747061034351E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7337","passing","EPSG","4326","EPSG","7337","1.0","-1.0","0.0","1.75236022423E7","-4881059.083851","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7338","passing","EPSG","4326","EPSG","7338","1.0","-1.0","0.0","5.7492018356611E7","-1.6013941344268E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7339","passing","EPSG","4326","EPSG","7339","1.0","-1.0","0.0","1.7745627054233E7","-4949146.881439","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7340","passing","EPSG","4326","EPSG","7340","1.0","-1.0","0.0","5.8220444760428E7","-1.6237326060189E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7341","passing","EPSG","4326","EPSG","7341","1.0","-1.0","0.0","1.7720703733488E7","-4914403.332447","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7342","passing","EPSG","4326","EPSG","7342","1.0","-1.0","0.0","5.8138675498951E7","-1.6123338266535E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7343","passing","EPSG","4326","EPSG","7343","1.0","-1.0","0.0","1.7945723569145E7","-4977190.42251","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7344","passing","EPSG","4326","EPSG","7344","1.0","-1.0","0.0","5.8876928076436E7","-1.6329332244518E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7345","passing","EPSG","4326","EPSG","7345","1.0","-1.0","0.0","1.762168808651E7","-4758906.960034","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7346","passing","EPSG","4326","EPSG","7346","1.0","-1.0","0.0","5.7813821663825E7","-1.5613180584711E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7347","passing","EPSG","4326","EPSG","7347","1.0","-1.0","0.0","1.7920414719611E7","-4781441.184756","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7348","passing","EPSG","4326","EPSG","7348","1.0","-1.0","0.0","5.8793893959258E7","-1.568711162032E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7349","passing","EPSG","4326","EPSG","7349","1.0","-1.0","0.0","1.8251246793074E7","-4789412.663278","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7350","passing","EPSG","4326","EPSG","7350","1.0","-1.0","0.0","5.9879298853611E7","-1.5713264712773E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7351","passing","EPSG","4326","EPSG","7351","1.0","-1.0","0.0","1.6831758578206E7","-4926017.577051","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7352","passing","EPSG","4326","EPSG","7352","1.0","-1.0","0.0","5.5222194601997E7","-1.6161442667376E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7353","passing","EPSG","4326","EPSG","7353","1.0","-1.0","0.0","1.6948526910005E7","-4843565.841971","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7354","passing","EPSG","4326","EPSG","7354","1.0","-1.0","0.0","5.560529203724E7","-1.5890932266533E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7355","passing","EPSG","4326","EPSG","7355","1.0","-1.0","0.0","1.7233025322141E7","-4903661.963033","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7356","passing","EPSG","4326","EPSG","7356","1.0","-1.0","0.0","5.6538683911057E7","-1.6088097623716E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7357","passing","EPSG","4326","EPSG","7357","1.0","-1.0","0.0","1.7795130631267E7","-4763180.715586","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7358","passing","EPSG","4326","EPSG","7358","1.0","-1.0","0.0","5.8382857746082E7","-1.5627202064386E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7359","passing","EPSG","4326","EPSG","7359","1.0","-1.0","0.0","1.6808455748814E7","-5124625.096184","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7360","passing","EPSG","4326","EPSG","7360","1.0","-1.0","0.0","5.5145741902567E7","-1.6813040836396E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7361","passing","EPSG","4326","EPSG","7361","1.0","-1.0","0.0","1.8021454769327E7","-4903803.960871","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7362","passing","EPSG","4326","EPSG","7362","1.0","-1.0","0.0","5.9125389522367E7","-1.6088563494957E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7363","passing","EPSG","4326","EPSG","7363","1.0","-1.0","0.0","1.7720703733488E7","-5030986.183175","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7364","passing","EPSG","4326","EPSG","7364","1.0","-1.0","0.0","5.8138675498951E7","-1.6505827169299E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7365","passing","EPSG","4326","EPSG","7365","1.0","-1.0","0.0","1.8046780981103E7","-4783148.308523","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7366","passing","EPSG","4326","EPSG","7366","1.0","-1.0","0.0","5.9208480602167E7","-1.5692712408878E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7367","passing","EPSG","4326","EPSG","7367","1.0","-1.0","0.0","1.7996190563933E7","-4941220.049584","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7368","passing","EPSG","4326","EPSG","7368","1.0","-1.0","0.0","5.904250187517E7","-1.6211319446011E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7369","passing","EPSG","4326","EPSG","7369","1.0","-1.0","0.0","1.6925005925602E7","-5025464.151156","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7370","passing","EPSG","4326","EPSG","7370","1.0","-1.0","0.0","5.5528123607578E7","-1.6487710302584E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 7142","passing","EPSG","4326","EPSG","7142","1.0","-1.0","0.0","-3888072.653969","-3519744.175070","109.910871","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 7257","passing","EPSG","4326","EPSG","7257","1.0","-1.0","0.0","11458600.178861","-17199251.072571","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 7258","passing","EPSG","4326","EPSG","7258","1.0","-1.0","0.0","37593757.420148","-56427876.227261","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 7259","passing","EPSG","4326","EPSG","7259","1.0","-1.0","0.0","7345479.009401","-18625587.774174","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 7260","passing","EPSG","4326","EPSG","7260","1.0","-1.0","0.0","24099292.383344","-61107449.222434","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 7261","error","EPSG","4326","EPSG","7261","1.0","-1.0","0.0","1.7209011773599E7","-4869004.979394","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7262","error","EPSG","4326","EPSG","7262","1.0","-1.0","0.0","5.6459899460548E7","-1.5974393836561E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7263","error","EPSG","4326","EPSG","7263","1.0","-1.0","0.0","1.7920662241704E7","-5070164.800854","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7264","error","EPSG","4326","EPSG","7264","1.0","-1.0","0.0","5.8794706037992E7","-1.6634365684135E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7265","error","EPSG","4326","EPSG","7265","1.0","-1.0","0.0","1.6995556996618E7","-4973833.522826","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7266","error","EPSG","4326","EPSG","7266","1.0","-1.0","0.0","5.575958991307E7","-1.631831881614E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7267","error","EPSG","4326","EPSG","7267","1.0","-1.0","0.0","1.7523740507246E7","-4953264.495864","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7268","error","EPSG","4326","EPSG","7268","1.0","-1.0","0.0","5.7492471980857E7","-1.6250835266847E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7269","error","EPSG","4326","EPSG","7269","1.0","-1.0","0.0","1.7426092740471E7","-4881137.56991","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7270","error","EPSG","4326","EPSG","7270","1.0","-1.0","0.0","5.7172105932695E7","-1.6014198843947E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7271","error","EPSG","4326","EPSG","7271","1.0","-1.0","0.0","1.7597172046532E7","-5046196.751334","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7272","error","EPSG","4326","EPSG","7272","1.0","-1.0","0.0","5.7733388622665E7","-1.6555730508335E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7273","error","EPSG","4326","EPSG","7273","1.0","-1.0","0.0","1.7474745528931E7","-5055963.015421","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7274","error","EPSG","4326","EPSG","7274","1.0","-1.0","0.0","5.7331727622834E7","-1.6587771993094E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7275","error","EPSG","4326","EPSG","7275","1.0","-1.0","0.0","1.7089819461183E7","-4768023.578631","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7276","error","EPSG","4326","EPSG","7276","1.0","-1.0","0.0","5.6068849348899E7","-1.5643090690892E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7277","error","EPSG","4326","EPSG","7277","1.0","-1.0","0.0","1.78452819983E7","-4921489.997195","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7278","error","EPSG","4326","EPSG","7278","1.0","-1.0","0.0","5.8547396022755E7","-1.6146588432464E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7279","error","EPSG","4326","EPSG","7279","1.0","-1.0","0.0","1.7572698539083E7","-5017078.450975","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7280","error","EPSG","4326","EPSG","7280","1.0","-1.0","0.0","5.7653095123641E7","-1.6460198217908E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7281","error","EPSG","4326","EPSG","7281","1.0","-1.0","0.0","1.7523550392945E7","-4786686.501065","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7282","error","EPSG","4326","EPSG","7282","1.0","-1.0","0.0","5.7491848247519E7","-1.5704320628911E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7283","error","EPSG","4326","EPSG","7283","1.0","-1.0","0.0","1.7820166795698E7","-4842323.437199","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7284","error","EPSG","4326","EPSG","7284","1.0","-1.0","0.0","5.8464997228886E7","-1.5886856143545E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7285","passing","EPSG","4326","EPSG","7285","1.0","-1.0","0.0","13070661.197424","-16295479.030398","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 7286","passing","EPSG","4326","EPSG","7286","1.0","-1.0","0.0","42882660.945215","-53462750.785563","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 7287","error","EPSG","4326","EPSG","7287","1.0","-1.0","0.0","1.7113811694569E7","-4874869.716826","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7288","error","EPSG","4326","EPSG","7288","1.0","-1.0","0.0","5.6147563867932E7","-1.5993635062621E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7289","passing","EPSG","4326","EPSG","7289","1.0","-1.0","0.0","11458622.615299","-17277024.724685","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 7290","passing","EPSG","4326","EPSG","7290","1.0","-1.0","0.0","37593831.030360","-56683038.617571","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 7291","error","EPSG","4326","EPSG","7291","1.0","-1.0","0.0","1.7745434498304E7","-4810324.07887","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7292","error","EPSG","4326","EPSG","7292","1.0","-1.0","0.0","5.821981301652E7","-1.5781871582092E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7293","error","EPSG","4326","EPSG","7293","1.0","-1.0","0.0","1.7209130553593E7","-5052246.981052","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7294","error","EPSG","4326","EPSG","7294","1.0","-1.0","0.0","5.6460289157912E7","-1.6575580303668E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7295","passing","EPSG","4326","EPSG","7295","1.0","-1.0","0.0","7345528.746212","-18442501.893969","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 7296","passing","EPSG","4326","EPSG","7296","1.0","-1.0","0.0","24099455.561532","-60506774.963795","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 7297","error","EPSG","4326","EPSG","7297","1.0","-1.0","0.0","1.7920591521106E7","-5014623.748948","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7298","error","EPSG","4326","EPSG","7298","1.0","-1.0","0.0","5.8794474015497E7","-1.6452144749672E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7299","error","EPSG","4326","EPSG","7299","1.0","-1.0","0.0","1.7426109926048E7","-5092113.039051","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7300","error","EPSG","4326","EPSG","7300","1.0","-1.0","0.0","5.7172162315709E7","-1.6706374195619E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7301","error","EPSG","4326","EPSG","7301","1.0","-1.0","0.0","1.8097602234827E7","-4824918.998251","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7302","error","EPSG","4326","EPSG","7302","1.0","-1.0","0.0","5.9375216665429E7","-1.5829755080094E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7303","error","EPSG","4326","EPSG","7303","1.0","-1.0","0.0","1.7137558486681E7","-5014967.353227","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7304","error","EPSG","4326","EPSG","7304","1.0","-1.0","0.0","5.6225473135054E7","-1.6453272058046E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7305","error","EPSG","4326","EPSG","7305","1.0","-1.0","0.0","1.72811094841E7","-4972973.101316","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7306","error","EPSG","4326","EPSG","7306","1.0","-1.0","0.0","5.6696440032418E7","-1.6315495916566E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7307","error","EPSG","4326","EPSG","7307","1.0","-1.0","0.0","1.7185277077624E7","-4939893.579411","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7308","error","EPSG","4326","EPSG","7308","1.0","-1.0","0.0","5.638202987884E7","-1.6206967518451E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7309","error","EPSG","4326","EPSG","7309","1.0","-1.0","0.0","1.7353326903063E7","-4760492.303763","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7310","error","EPSG","4326","EPSG","7310","1.0","-1.0","0.0","5.6933373347798E7","-1.5618381833262E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7311","error","EPSG","4326","EPSG","7311","1.0","-1.0","0.0","1.7019216897323E7","-4941845.063132","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7312","error","EPSG","4326","EPSG","7312","1.0","-1.0","0.0","5.5837214103969E7","-1.6213370011293E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7313","error","EPSG","4326","EPSG","7313","1.0","-1.0","0.0","1.7353395354522E7","-5026963.859686","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7314","error","EPSG","4326","EPSG","7314","1.0","-1.0","0.0","5.6933597925628E7","-1.6492630596319E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7315","error","EPSG","4326","EPSG","7315","1.0","-1.0","0.0","1.7042682560348E7","-5043039.665224","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7316","error","EPSG","4326","EPSG","7316","1.0","-1.0","0.0","5.591420103341E7","-1.6545372634989E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7317","error","EPSG","4326","EPSG","7317","1.0","-1.0","0.0","1.7256876386175E7","-4838346.274556","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7318","error","EPSG","4326","EPSG","7318","1.0","-1.0","0.0","5.6616935276975E7","-1.5873807735774E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7319","error","EPSG","4326","EPSG","7319","1.0","-1.0","0.0","1.7820325014351E7","-5092183.722245","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7320","error","EPSG","4326","EPSG","7320","1.0","-1.0","0.0","5.8465516317917E7","-1.67066060954E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7321","passing","EPSG","4326","EPSG","7321","1.0","-1.0","0.0","9565701.699931","-17869783.225139","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 7322","passing","EPSG","4326","EPSG","7322","1.0","-1.0","0.0","31383472.993858","-58627780.464477","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 7323","error","EPSG","4326","EPSG","7323","1.0","-1.0","0.0","1.6971854345882E7","-4805952.839579","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7324","error","EPSG","4326","EPSG","7324","1.0","-1.0","0.0","5.5681825466448E7","-1.5767530274518E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7325","error","EPSG","4326","EPSG","7325","1.0","-1.0","0.0","1.7185090686287E7","-4845469.6723","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7326","error","EPSG","4326","EPSG","7326","1.0","-1.0","0.0","5.6381418359926E7","-1.5897178416537E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7327","error","EPSG","4326","EPSG","7327","1.0","-1.0","0.0","1.7353395354522E7","-4910377.404406","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7328","error","EPSG","4326","EPSG","7328","1.0","-1.0","0.0","5.6933597925628E7","-1.6110129867622E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7329","error","EPSG","4326","EPSG","7329","1.0","-1.0","0.0","1.7996101784756E7","-4846833.422274","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7330","error","EPSG","4326","EPSG","7330","1.0","-1.0","0.0","5.9042210605486E7","-1.590165265291E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7331","error","EPSG","4326","EPSG","7331","1.0","-1.0","0.0","1.7019116226351E7","-5108387.760381","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7332","error","EPSG","4326","EPSG","7332","1.0","-1.0","0.0","5.5836883819286E7","-1.6759768843849E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7333","error","EPSG","4326","EPSG","7333","1.0","-1.0","0.0","1.7971023659486E7","-5100802.256602","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7334","error","EPSG","4326","EPSG","7334","1.0","-1.0","0.0","5.8959933456165E7","-1.6734882070201E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7335","error","EPSG","4326","EPSG","7335","1.0","-1.0","0.0","1.764647302465E7","-5104514.412299","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7336","error","EPSG","4326","EPSG","7336","1.0","-1.0","0.0","5.7895136915039E7","-1.6747061034351E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7337","error","EPSG","4326","EPSG","7337","1.0","-1.0","0.0","1.75236022423E7","-4881059.083851","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7338","error","EPSG","4326","EPSG","7338","1.0","-1.0","0.0","5.7492018356611E7","-1.6013941344268E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7339","error","EPSG","4326","EPSG","7339","1.0","-1.0","0.0","1.7745627054233E7","-4949146.881439","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7340","error","EPSG","4326","EPSG","7340","1.0","-1.0","0.0","5.8220444760428E7","-1.6237326060189E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7341","error","EPSG","4326","EPSG","7341","1.0","-1.0","0.0","1.7720703733488E7","-4914403.332447","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7342","error","EPSG","4326","EPSG","7342","1.0","-1.0","0.0","5.8138675498951E7","-1.6123338266535E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7343","error","EPSG","4326","EPSG","7343","1.0","-1.0","0.0","1.7945723569145E7","-4977190.42251","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7344","error","EPSG","4326","EPSG","7344","1.0","-1.0","0.0","5.8876928076436E7","-1.6329332244518E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7345","error","EPSG","4326","EPSG","7345","1.0","-1.0","0.0","1.762168808651E7","-4758906.960034","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7346","error","EPSG","4326","EPSG","7346","1.0","-1.0","0.0","5.7813821663825E7","-1.5613180584711E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7347","error","EPSG","4326","EPSG","7347","1.0","-1.0","0.0","1.7920414719611E7","-4781441.184756","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7348","error","EPSG","4326","EPSG","7348","1.0","-1.0","0.0","5.8793893959258E7","-1.568711162032E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7349","error","EPSG","4326","EPSG","7349","1.0","-1.0","0.0","1.8251246793074E7","-4789412.663278","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7350","error","EPSG","4326","EPSG","7350","1.0","-1.0","0.0","5.9879298853611E7","-1.5713264712773E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7351","passing","EPSG","4326","EPSG","7351","1.0","-1.0","0.0","7345571.377765","-18492576.012079","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 7352","passing","EPSG","4326","EPSG","7352","1.0","-1.0","0.0","24099595.428550","-60671059.799630","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 7353","passing","EPSG","4326","EPSG","7353","1.0","-1.0","0.0","-10892059.874320","-20748670.840422","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 7354","passing","EPSG","4326","EPSG","7354","1.0","-1.0","0.0","-35735033.104332","-68072930.915617","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 7355","error","EPSG","4326","EPSG","7355","1.0","-1.0","0.0","1.7233025322141E7","-4903661.963033","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7356","error","EPSG","4326","EPSG","7356","1.0","-1.0","0.0","5.6538683911057E7","-1.6088097623716E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7357","error","EPSG","4326","EPSG","7357","1.0","-1.0","0.0","1.7795130631267E7","-4763180.715586","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7358","error","EPSG","4326","EPSG","7358","1.0","-1.0","0.0","5.8382857746082E7","-1.5627202064386E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7359","passing","EPSG","4326","EPSG","7359","1.0","-1.0","0.0","9565729.675973","-18003104.782127","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 7360","passing","EPSG","4326","EPSG","7360","1.0","-1.0","0.0","31383564.778589","-59065186.272696","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 7361","error","EPSG","4326","EPSG","7361","1.0","-1.0","0.0","1.8021454769327E7","-4903803.960871","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7362","error","EPSG","4326","EPSG","7362","1.0","-1.0","0.0","5.9125389522367E7","-1.6088563494957E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7363","error","EPSG","4326","EPSG","7363","1.0","-1.0","0.0","1.7720703733488E7","-5030986.183175","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7364","error","EPSG","4326","EPSG","7364","1.0","-1.0","0.0","5.8138675498951E7","-1.6505827169299E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7365","error","EPSG","4326","EPSG","7365","1.0","-1.0","0.0","1.8046780981103E7","-4783148.308523","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7366","error","EPSG","4326","EPSG","7366","1.0","-1.0","0.0","5.9208480602167E7","-1.5692712408878E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7367","error","EPSG","4326","EPSG","7367","1.0","-1.0","0.0","1.7996190563933E7","-4941220.049584","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7368","error","EPSG","4326","EPSG","7368","1.0","-1.0","0.0","5.904250187517E7","-1.6211319446011E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7369","passing","EPSG","4326","EPSG","7369","1.0","-1.0","0.0","-6028132.802076","-20748544.100773","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 7370","passing","EPSG","4326","EPSG","7370","1.0","-1.0","0.0","-19777299.034811","-68072515.103952","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 7374","passing","EPSG","4326","EPSG","7374","1.0","-1.0","0.0","-5950996.913984","-172760.344418","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7375","passing","EPSG","4326","EPSG","7375","1.0","-1.0","0.0","-7068672.129214","-199101.756648","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7376","passing","EPSG","4326","EPSG","7376","1.0","-1.0","0.0","-8380117.510219","-238225.04224","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7531","passing","EPSG","4326","EPSG","7531","1.0","-1.0","0.0","1.1190112147958E7","1530786.971195","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7532","passing","EPSG","4326","EPSG","7532","1.0","-1.0","0.0","1.8068738062346E7","-5405325.102896","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 7532","error","EPSG","4326","EPSG","7532","1.0","-1.0","0.0","1.8068738062346E7","-5405325.102896","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 7534","passing","EPSG","4326","EPSG","7534","1.0","-1.0","0.0","1.1078850667895E7","1601602.398222","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7535","passing","EPSG","4326","EPSG","7535","1.0","-1.0","0.0","1.8542208569864E7","-5394002.064049","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 7535","error","EPSG","4326","EPSG","7535","1.0","-1.0","0.0","1.8542208569864E7","-5394002.064049","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 7536","passing","EPSG","4326","EPSG","7536","1.0","-1.0","0.0","1.0977994425237E7","1401818.292327","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7538","passing","EPSG","4326","EPSG","7538","1.0","-1.0","0.0","1.091632640974E7","1181450.947617","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7539","passing","EPSG","4326","EPSG","7539","1.0","-1.0","0.0","1.0956536596367E7","1316796.284171","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7540","passing","EPSG","4326","EPSG","7540","1.0","-1.0","0.0","1.0983782944479E7","1211167.323239","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7541","passing","EPSG","4326","EPSG","7541","1.0","-1.0","0.0","1.8705963112563E7","-5264035.313775","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7542","passing","EPSG","4326","EPSG","7542","1.0","-1.0","0.0","1.7825309517877E7","-5544092.881851","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 7541","error","EPSG","4326","EPSG","7541","1.0","-1.0","0.0","1.8705963112563E7","-5264035.313775","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7542","error","EPSG","4326","EPSG","7542","1.0","-1.0","0.0","1.7825309517877E7","-5544092.881851","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 7545","passing","EPSG","4326","EPSG","7545","1.0","-1.0","0.0","1.1034499781635E7","1445837.029539","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7546","passing","EPSG","4326","EPSG","7546","1.0","-1.0","0.0","1.824452591018E7","-5685394.690762","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7547","passing","EPSG","4326","EPSG","7547","1.0","-1.0","0.0","1.8644160382754E7","-5541231.771574","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 7546","error","EPSG","4326","EPSG","7546","1.0","-1.0","0.0","1.824452591018E7","-5685394.690762","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7547","error","EPSG","4326","EPSG","7547","1.0","-1.0","0.0","1.8644160382754E7","-5541231.771574","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 7549","passing","EPSG","4326","EPSG","7549","1.0","-1.0","0.0","1.0921959998346E7","1153425.415057","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7550","passing","EPSG","4326","EPSG","7550","1.0","-1.0","0.0","1.0898807238793E7","1136900.194202","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7554","passing","EPSG","4326","EPSG","7554","1.0","-1.0","0.0","1.8168835296623E7","-5319784.333141","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7555","passing","EPSG","4326","EPSG","7555","1.0","-1.0","0.0","1.7886787790146E7","-5426249.036351","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 7554","error","EPSG","4326","EPSG","7554","1.0","-1.0","0.0","1.8168835296623E7","-5319784.333141","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7555","error","EPSG","4326","EPSG","7555","1.0","-1.0","0.0","1.7886787790146E7","-5426249.036351","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 7557","passing","EPSG","4326","EPSG","7557","1.0","-1.0","0.0","1.0977969046496E7","1164095.943563","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7559","passing","EPSG","4326","EPSG","7559","1.0","-1.0","0.0","1.089361331296E7","1206629.077554","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7560","passing","EPSG","4326","EPSG","7560","1.0","-1.0","0.0","1.8127615935467E7","-5589318.461061","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7561","passing","EPSG","4326","EPSG","7561","1.0","-1.0","0.0","1.8359375027934E7","-5613393.412737","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 7560","error","EPSG","4326","EPSG","7560","1.0","-1.0","0.0","1.8127615935467E7","-5589318.461061","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7561","error","EPSG","4326","EPSG","7561","1.0","-1.0","0.0","1.8359375027934E7","-5613393.412737","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 7562","passing","EPSG","4326","EPSG","7562","1.0","-1.0","0.0","1.1051590142266E7","1367198.859196","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7563","passing","EPSG","4326","EPSG","7563","1.0","-1.0","0.0","1.8172883085444E7","-5562448.390228","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 7563","error","EPSG","4326","EPSG","7563","1.0","-1.0","0.0","1.8172883085444E7","-5562448.390228","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 7564","passing","EPSG","4326","EPSG","7564","1.0","-1.0","0.0","1.0901549209526E7","1196607.494278","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7565","passing","EPSG","4326","EPSG","7565","1.0","-1.0","0.0","1.1133309243073E7","1559758.743052","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7567","passing","EPSG","4326","EPSG","7567","1.0","-1.0","0.0","1.0841630010083E7","1154965.000842","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7569","passing","EPSG","4326","EPSG","7569","1.0","-1.0","0.0","1.1015074626063E7","1334708.953985","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7573","passing","EPSG","4326","EPSG","7573","1.0","-1.0","0.0","1.1152095260838E7","1478472.516608","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7574","passing","EPSG","4326","EPSG","7574","1.0","-1.0","0.0","1.8615461118325E7","-5543570.332176","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 7574","error","EPSG","4326","EPSG","7574","1.0","-1.0","0.0","1.8615461118325E7","-5543570.332176","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 7576","passing","EPSG","4326","EPSG","7576","1.0","-1.0","0.0","1.1060695551366E7","1361394.692708","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7578","passing","EPSG","4326","EPSG","7578","1.0","-1.0","0.0","1.1066110497508E7","1300357.746857","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7579","passing","EPSG","4326","EPSG","7579","1.0","-1.0","0.0","1.0975190491794E7","1189767.397438","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7580","passing","EPSG","4326","EPSG","7580","1.0","-1.0","0.0","1.0894789921715E7","1055137.646596","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7581","passing","EPSG","4326","EPSG","7581","1.0","-1.0","0.0","1.1211195182485E7","1639299.045375","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7582","passing","EPSG","4326","EPSG","7582","1.0","-1.0","0.0","1.8190531639855E7","-5402833.866323","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7583","passing","EPSG","4326","EPSG","7583","1.0","-1.0","0.0","1.8362696783023E7","-5368959.457174","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7584","passing","EPSG","4326","EPSG","7584","1.0","-1.0","0.0","1.8649706305111E7","-5481735.214879","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 7582","error","EPSG","4326","EPSG","7582","1.0","-1.0","0.0","1.8190531639855E7","-5402833.866323","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7583","error","EPSG","4326","EPSG","7583","1.0","-1.0","0.0","1.8362696783023E7","-5368959.457174","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7584","error","EPSG","4326","EPSG","7584","1.0","-1.0","0.0","1.8649706305111E7","-5481735.214879","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 7585","passing","EPSG","4326","EPSG","7585","1.0","-1.0","0.0","1.0878149265866E7","1109476.147171","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7586","passing","EPSG","4326","EPSG","7586","1.0","-1.0","0.0","1.1024895986121E7","1304229.146808","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7590","passing","EPSG","4326","EPSG","7590","1.0","-1.0","0.0","3.6712892938776E7","5022256.92089","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7591","passing","EPSG","4326","EPSG","7591","1.0","-1.0","0.0","5.928051812588E7","-1.7733970775418E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 7591","error","EPSG","4326","EPSG","7591","1.0","-1.0","0.0","5.928051812588E7","-1.7733970775418E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 7593","passing","EPSG","4326","EPSG","7593","1.0","-1.0","0.0","3.6347862566617E7","5254590.534477","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7594","passing","EPSG","4326","EPSG","7594","1.0","-1.0","0.0","6.0833895949316E7","-1.7696821771876E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 7594","error","EPSG","4326","EPSG","7594","1.0","-1.0","0.0","6.0833895949316E7","-1.7696821771876E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 7595","passing","EPSG","4326","EPSG","7595","1.0","-1.0","0.0","3.6016970043766E7","4599132.180392","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7597","passing","EPSG","4326","EPSG","7597","1.0","-1.0","0.0","3.5814647562374E7","3876143.651009","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7598","passing","EPSG","4326","EPSG","7598","1.0","-1.0","0.0","3.5946570483187E7","4320189.142789","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7599","passing","EPSG","4326","EPSG","7599","1.0","-1.0","0.0","3.6035961210301E7","3973638.126448","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7600","passing","EPSG","4326","EPSG","7600","1.0","-1.0","0.0","6.1371147312097E7","-1.7270422525212E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7601","passing","EPSG","4326","EPSG","7601","1.0","-1.0","0.0","5.8481869643241E7","-1.818924472942E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 7600","error","EPSG","4326","EPSG","7600","1.0","-1.0","0.0","6.1371147312097E7","-1.7270422525212E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7601","error","EPSG","4326","EPSG","7601","1.0","-1.0","0.0","5.8481869643241E7","-1.818924472942E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 7604","passing","EPSG","4326","EPSG","7604","1.0","-1.0","0.0","3.6202354700193E7","4743550.321085","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7605","passing","EPSG","4326","EPSG","7605","1.0","-1.0","0.0","5.9857248756735E7","-1.8652832414276E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7606","passing","EPSG","4326","EPSG","7606","1.0","-1.0","0.0","6.1168382855468E7","-1.8179857903415E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 7605","error","EPSG","4326","EPSG","7605","1.0","-1.0","0.0","5.9857248756735E7","-1.8652832414276E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7606","error","EPSG","4326","EPSG","7606","1.0","-1.0","0.0","6.1168382855468E7","-1.8179857903415E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 7608","passing","EPSG","4326","EPSG","7608","1.0","-1.0","0.0","3.583313042744E7","3784196.549706","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7609","passing","EPSG","4326","EPSG","7609","1.0","-1.0","0.0","3.5757170082451E7","3729980.0534","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7613","passing","EPSG","4326","EPSG","7613","1.0","-1.0","0.0","5.9608920468909E7","-1.7453325766266E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7614","passing","EPSG","4326","EPSG","7614","1.0","-1.0","0.0","5.8683569608645E7","-1.7802618713364E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 7613","error","EPSG","4326","EPSG","7613","1.0","-1.0","0.0","5.9608920468909E7","-1.7453325766266E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7614","error","EPSG","4326","EPSG","7614","1.0","-1.0","0.0","5.8683569608645E7","-1.7802618713364E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 7616","passing","EPSG","4326","EPSG","7616","1.0","-1.0","0.0","3.6016886779555E7","3819204.774775","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7618","passing","EPSG","4326","EPSG","7618","1.0","-1.0","0.0","3.5740129677774E7","3958748.898787","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7619","passing","EPSG","4326","EPSG","7619","1.0","-1.0","0.0","5.9473686615113E7","-1.8337622318165E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7620","passing","EPSG","4326","EPSG","7620","1.0","-1.0","0.0","6.023404957095E7","-1.8416608221135E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 7619","error","EPSG","4326","EPSG","7619","1.0","-1.0","0.0","5.9473686615113E7","-1.8337622318165E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7620","error","EPSG","4326","EPSG","7620","1.0","-1.0","0.0","6.023404957095E7","-1.8416608221135E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 7621","passing","EPSG","4326","EPSG","7621","1.0","-1.0","0.0","3.6258425325223E7","4485551.590817","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7622","passing","EPSG","4326","EPSG","7622","1.0","-1.0","0.0","5.9622200589461E7","-1.8249466093434E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 7622","error","EPSG","4326","EPSG","7622","1.0","-1.0","0.0","5.9622200589461E7","-1.8249466093434E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 7623","passing","EPSG","4326","EPSG","7623","1.0","-1.0","0.0","3.5766166031941E7","3925869.754627","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7624","passing","EPSG","4326","EPSG","7624","1.0","-1.0","0.0","3.6526532074591E7","5117308.476595","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7626","passing","EPSG","4326","EPSG","7626","1.0","-1.0","0.0","3.5569581124671E7","3789247.673768","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7628","passing","EPSG","4326","EPSG","7628","1.0","-1.0","0.0","3.6138624002259E7","4378957.627027","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7632","passing","EPSG","4326","EPSG","7632","1.0","-1.0","0.0","3.6588165868697E7","4850621.915133","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7633","passing","EPSG","4326","EPSG","7633","1.0","-1.0","0.0","6.1074225351948E7","-1.8187530331976E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 7633","error","EPSG","4326","EPSG","7633","1.0","-1.0","0.0","6.1074225351948E7","-1.8187530331976E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 7635","passing","EPSG","4326","EPSG","7635","1.0","-1.0","0.0","3.628829865443E7","4466509.087483","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7637","passing","EPSG","4326","EPSG","7637","1.0","-1.0","0.0","3.6306064190276E7","4266257.041641","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7638","passing","EPSG","4326","EPSG","7638","1.0","-1.0","0.0","3.6007770804944E7","3903428.536661","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7639","passing","EPSG","4326","EPSG","7639","1.0","-1.0","0.0","3.574398993491E7","3461730.762217","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7640","passing","EPSG","4326","EPSG","7640","1.0","-1.0","0.0","3.6782062861118E7","5378266.951837","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7641","passing","EPSG","4326","EPSG","7641","1.0","-1.0","0.0","5.9680102554768E7","-1.7725797442939E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7642","passing","EPSG","4326","EPSG","7642","1.0","-1.0","0.0","6.0244947695246E7","-1.7614661152565E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7643","passing","EPSG","4326","EPSG","7643","1.0","-1.0","0.0","6.1186578102823E7","-1.7984659617449E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 7641","error","EPSG","4326","EPSG","7641","1.0","-1.0","0.0","5.9680102554768E7","-1.7725797442939E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7642","error","EPSG","4326","EPSG","7642","1.0","-1.0","0.0","6.0244947695246E7","-1.7614661152565E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7643","error","EPSG","4326","EPSG","7643","1.0","-1.0","0.0","6.1186578102823E7","-1.7984659617449E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 7644","passing","EPSG","4326","EPSG","7644","1.0","-1.0","0.0","3.5689394716373E7","3640006.326509","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7645","passing","EPSG","4326","EPSG","7645","1.0","-1.0","0.0","3.6170846247706E7","4278958.458903","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 20004","passing","EPSG","4326","EPSG","20004","1.0","-1.0","0.0","2227111.049229","-117636.4223","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 20005","passing","EPSG","4326","EPSG","20005","1.0","-1.0","0.0","2500789.358156","-123030.496386","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 20006","passing","EPSG","4326","EPSG","20006","1.0","-1.0","0.0","2736110.647555","-130450.737301","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 20007","passing","EPSG","4326","EPSG","20007","1.0","-1.0","0.0","2919589.13206","-140457.124938","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 20008","passing","EPSG","4326","EPSG","20008","1.0","-1.0","0.0","3034159.469487","-153890.015637","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 20009","passing","EPSG","4326","EPSG","20009","1.0","-1.0","0.0","3057846.196553","-172000.113601","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 20010","passing","EPSG","4326","EPSG","20010","1.0","-1.0","0.0","2962094.047199","-196632.806922","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 20011","passing","EPSG","4326","EPSG","20011","1.0","-1.0","0.0","2709705.607058","-230482.065892","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 20012","passing","EPSG","4326","EPSG","20012","1.0","-1.0","0.0","2252332.757595","-277431.325425","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 20013","passing","EPSG","4326","EPSG","20013","1.0","-1.0","0.0","1527468.363465","-343000.997494","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 20014","passing","EPSG","4326","EPSG","20014","1.0","-1.0","0.0","454884.656623","-434924.483647","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 20015","passing","EPSG","4326","EPSG","20015","1.0","-1.0","0.0","-1067535.229283","-563876.781733","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 20064","passing","EPSG","4326","EPSG","20064","1.0","-1.0","0.0","-1772888.950771","-117636.4223","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 20065","passing","EPSG","4326","EPSG","20065","1.0","-1.0","0.0","-2499210.641844","-123030.496386","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 20066","passing","EPSG","4326","EPSG","20066","1.0","-1.0","0.0","-3263889.352445","-130450.737301","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 20067","passing","EPSG","4326","EPSG","20067","1.0","-1.0","0.0","-4080410.86794","-140457.124938","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 20068","passing","EPSG","4326","EPSG","20068","1.0","-1.0","0.0","-4965840.530513","-153890.015637","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 20069","passing","EPSG","4326","EPSG","20069","1.0","-1.0","0.0","-5942153.803447","-172000.113601","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 20070","passing","EPSG","4326","EPSG","20070","1.0","-1.0","0.0","-7037905.952801","-196632.806922","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 20071","passing","EPSG","4326","EPSG","20071","1.0","-1.0","0.0","-8290294.392942","-230482.065892","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 20072","passing","EPSG","4326","EPSG","20072","1.0","-1.0","0.0","-9747667.242405","-277431.325425","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 20073","passing","EPSG","4326","EPSG","20073","1.0","-1.0","0.0","-1.1472531636535E7","-343000.997494","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 20074","passing","EPSG","4326","EPSG","20074","1.0","-1.0","0.0","-1.3545115343377E7","-434924.483647","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 20075","passing","EPSG","4326","EPSG","20075","1.0","-1.0","0.0","-1.6067535229283E7","-563876.781733","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 20004","passing","EPSG","4326","EPSG","20004","1.0","-1.0","0.0","2227107.025692","-117636.520838","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 20005","passing","EPSG","4326","EPSG","20005","1.0","-1.0","0.0","2500754.923419","-123031.573310","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 20006","passing","EPSG","4326","EPSG","20006","1.0","-1.0","0.0","2735908.627245","-130458.474623","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 20007","passing","EPSG","4326","EPSG","20007","1.0","-1.0","0.0","2918673.417661","-140498.925711","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 20008","passing","EPSG","4326","EPSG","20008","1.0","-1.0","0.0","3030710.312731","-154074.329852","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 20009","passing","EPSG","4326","EPSG","20009","1.0","-1.0","0.0","3046509.911393","-172701.307523","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 20010","passing","EPSG","4326","EPSG","20010","1.0","-1.0","0.0","2928398.609535","-199032.459545","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 20011","passing","EPSG","4326","EPSG","20011","1.0","-1.0","0.0","2616450.977618","-238139.999242","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 20012","passing","EPSG","4326","EPSG","20012","1.0","-1.0","0.0","2005212.025214","-301115.494208","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 20013","passing","EPSG","4326","EPSG","20013","1.0","-1.0","0.0","877895.585743","-418269.477200","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 20014","passing","EPSG","4326","EPSG","20014","1.0","-1.0","0.0","-1365416.289671","-723928.382214","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 20015","passing","EPSG","4326","EPSG","20015","1.0","-1.0","0.0","6106366.241160","-13449395.681243","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 20064","passing","EPSG","4326","EPSG","20064","1.0","-1.0","0.0","-1772892.974308","-117636.520838","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 20065","passing","EPSG","4326","EPSG","20065","1.0","-1.0","0.0","-2499245.076581","-123031.573310","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 20066","passing","EPSG","4326","EPSG","20066","1.0","-1.0","0.0","-3264091.372755","-130458.474623","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 20067","passing","EPSG","4326","EPSG","20067","1.0","-1.0","0.0","-4081326.582339","-140498.925711","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 20068","passing","EPSG","4326","EPSG","20068","1.0","-1.0","0.0","-4969289.687269","-154074.329852","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 20069","passing","EPSG","4326","EPSG","20069","1.0","-1.0","0.0","-5953490.088607","-172701.307523","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 20070","passing","EPSG","4326","EPSG","20070","1.0","-1.0","0.0","-7071601.390465","-199032.459545","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 20071","passing","EPSG","4326","EPSG","20071","1.0","-1.0","0.0","-8383549.022382","-238139.999242","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 20072","passing","EPSG","4326","EPSG","20072","1.0","-1.0","0.0","-9994787.974786","-301115.494208","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 20073","passing","EPSG","4326","EPSG","20073","1.0","-1.0","0.0","-12122104.414257","-418269.477200","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 20074","passing","EPSG","4326","EPSG","20074","1.0","-1.0","0.0","-15365416.289671","-723928.382214","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 20075","passing","EPSG","4326","EPSG","20075","1.0","-1.0","0.0","-8893633.758840","-13449395.681243","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 20135","passing","EPSG","4326","EPSG","20135","1.0","-1.0","0.0","-2498185.666784","-123299.282492","57.736167","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 20136","passing","EPSG","4326","EPSG","20136","1.0","-1.0","0.0","-3262746.528632","-130743.781384","57.736167","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 20137","passing","EPSG","4326","EPSG","20137","1.0","-1.0","0.0","-4079687.173558","-140808.323723","57.736167","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -2893,68 +2893,68 @@ "4326 -> 21148","passing","EPSG","4326","EPSG","21148","1.0","-1.0","0.0","-1.3013758964872E7","-9510330.465974","1103.991405","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 21149","passing","EPSG","4326","EPSG","21149","1.0","-1.0","0.0","-1.0622111039664E7","-9662464.496853","1103.991405","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 21150","passing","EPSG","4326","EPSG","21150","1.0","-1.0","0.0","-8873631.028101","-9738234.580343","1103.991405","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 21291","passing","EPSG","4326","EPSG","21291","1.0","-1.0","0.0","9412857.477726","-238245.516063","-141.893703","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 21292","passing","EPSG","4326","EPSG","21292","1.0","-1.0","0.0","8502877.817398","-1604442.177924","-141.893703","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 21413","passing","EPSG","4326","EPSG","21413","1.0","-1.0","0.0","1527545.472395","-342995.046176","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 21414","passing","EPSG","4326","EPSG","21414","1.0","-1.0","0.0","454977.904554","-434916.510601","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 21415","passing","EPSG","4326","EPSG","21415","1.0","-1.0","0.0","-1067421.16108","-563865.977202","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 21453","passing","EPSG","4326","EPSG","21453","1.0","-1.0","0.0","-1.1472454527605E7","-342995.046176","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 21454","passing","EPSG","4326","EPSG","21454","1.0","-1.0","0.0","-1.3545022095446E7","-434916.510601","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 21455","passing","EPSG","4326","EPSG","21455","1.0","-1.0","0.0","-1.606742116108E7","-563865.977202","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 21473","passing","EPSG","4326","EPSG","21473","1.0","-1.0","0.0","-1.1472454527605E7","-342995.046176","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 21474","passing","EPSG","4326","EPSG","21474","1.0","-1.0","0.0","-1.3545022095446E7","-434916.510601","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 21475","passing","EPSG","4326","EPSG","21475","1.0","-1.0","0.0","-1.606742116108E7","-563865.977202","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 21291","passing","EPSG","4326","EPSG","21291","1.0","-1.0","0.0","9522949.629656","-247558.705692","-141.893703","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 21292","passing","EPSG","4326","EPSG","21292","1.0","-1.0","0.0","8576424.174057","-1610305.261684","-141.893703","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 21413","passing","EPSG","4326","EPSG","21413","1.0","-1.0","0.0","877998.661323","-418259.208244","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 21414","passing","EPSG","4326","EPSG","21414","1.0","-1.0","0.0","-1365240.176019","-723899.094671","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 21415","passing","EPSG","4326","EPSG","21415","1.0","-1.0","0.0","6096226.905901","-13446275.705824","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 21453","passing","EPSG","4326","EPSG","21453","1.0","-1.0","0.0","-12122001.338677","-418259.208244","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 21454","passing","EPSG","4326","EPSG","21454","1.0","-1.0","0.0","-15365240.176019","-723899.094671","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 21455","passing","EPSG","4326","EPSG","21455","1.0","-1.0","0.0","-8903773.094099","-13446275.705824","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 21473","passing","EPSG","4326","EPSG","21473","1.0","-1.0","0.0","-12122001.338677","-418259.208244","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 21474","passing","EPSG","4326","EPSG","21474","1.0","-1.0","0.0","-15365240.176019","-723899.094671","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 21475","passing","EPSG","4326","EPSG","21475","1.0","-1.0","0.0","-8903773.094099","-13446275.705824","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 21500","passing","EPSG","4326","EPSG","21500","1.0","-1.0","0.0","-381499.928232","-6309626.277519","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 21780","passing","EPSG","4326","EPSG","21780","1.0","-1.0","0.0","-1061258.372849","-5998105.380244","72.45377","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 21781","passing","EPSG","4326","EPSG","21781","1.0","-1.0","0.0","-461258.372849","-5798105.380244","72.45377","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 21782","passing","EPSG","4326","EPSG","21782","1.0","-1.0","0.0","-1061258.372849","-5998105.380244","72.45377","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 21818","passing","EPSG","4326","EPSG","21818","1.0","-1.0","0.0","1.4018905934253E7","-482704.779234","-568.718803","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 21891","passing","EPSG","4326","EPSG","21891","1.0","-1.0","0.0","1.4338617477745E7","90209.004789","-568.718803","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 21892","passing","EPSG","4326","EPSG","21892","1.0","-1.0","0.0","1.3317543870368E7","134841.957052","-568.718803","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 21893","passing","EPSG","4326","EPSG","21893","1.0","-1.0","0.0","1.2387209013718E7","172528.301583","-568.718803","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 21894","passing","EPSG","4326","EPSG","21894","1.0","-1.0","0.0","1.1536528001699E7","204368.847258","-568.718803","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 21896","passing","EPSG","4326","EPSG","21896","1.0","-1.0","0.0","1.4338617477745E7","90209.004789","-568.718803","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 21897","passing","EPSG","4326","EPSG","21897","1.0","-1.0","0.0","1.3317543870368E7","134841.957052","-568.718803","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 21898","passing","EPSG","4326","EPSG","21898","1.0","-1.0","0.0","1.2387209013718E7","172528.301583","-568.718803","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 21899","passing","EPSG","4326","EPSG","21899","1.0","-1.0","0.0","1.1536528001699E7","204368.847258","-568.718803","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 21891","passing","EPSG","4326","EPSG","21891","1.0","-1.0","0.0","15628098.084201","-89308.600777","-568.718803","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 21892","passing","EPSG","4326","EPSG","21892","1.0","-1.0","0.0","14093614.921846","41220.894946","-568.718803","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 21893","passing","EPSG","4326","EPSG","21893","1.0","-1.0","0.0","12863259.397062","121050.075777","-568.718803","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 21894","passing","EPSG","4326","EPSG","21894","1.0","-1.0","0.0","11830555.302781","175372.357944","-568.718803","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 21896","passing","EPSG","4326","EPSG","21896","1.0","-1.0","0.0","15628098.084201","-89308.600777","-568.718803","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 21897","passing","EPSG","4326","EPSG","21897","1.0","-1.0","0.0","14093614.921846","41220.894946","-568.718803","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 21898","passing","EPSG","4326","EPSG","21898","1.0","-1.0","0.0","12863259.397062","121050.075777","-568.718803","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 21899","passing","EPSG","4326","EPSG","21899","1.0","-1.0","0.0","11830555.302781","175372.357944","-568.718803","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 22032","passing","EPSG","4326","EPSG","22032","1.0","-1.0","0.0","-392655.849453","9888609.314327","-59.107151","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 22033","passing","EPSG","4326","EPSG","22033","1.0","-1.0","0.0","-1073121.148855","9886301.120087","-59.107151","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 22091","passing","EPSG","4326","EPSG","22091","1.0","-1.0","0.0","-674515.338893","9887809.640665","-59.107151","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 22092","passing","EPSG","4326","EPSG","22092","1.0","-1.0","0.0","-731145.102721","9887622.380984","-59.107151","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 22171","passing","EPSG","4326","EPSG","22171","1.0","-1.0","0.0","1.316346709951E7","9671230.891208","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 22172","passing","EPSG","4326","EPSG","22172","1.0","-1.0","0.0","1.328947315091E7","9704851.838049","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 22173","passing","EPSG","4326","EPSG","22173","1.0","-1.0","0.0","1.34882032921E7","9733276.551189","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 22174","passing","EPSG","4326","EPSG","22174","1.0","-1.0","0.0","1.3750656290095E7","9757339.480787","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 22175","passing","EPSG","4326","EPSG","22175","1.0","-1.0","0.0","1.406889415915E7","9777744.441021","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 22176","passing","EPSG","4326","EPSG","22176","1.0","-1.0","0.0","1.4435929604234E7","9795082.873512","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 22177","passing","EPSG","4326","EPSG","22177","1.0","-1.0","0.0","1.4845622388712E7","9809849.986231","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 22181","passing","EPSG","4326","EPSG","22181","1.0","-1.0","0.0","1.3163467099354E7","9671230.891296","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 22182","passing","EPSG","4326","EPSG","22182","1.0","-1.0","0.0","1.3289473150778E7","9704851.838136","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 22183","passing","EPSG","4326","EPSG","22183","1.0","-1.0","0.0","1.348820329199E7","9733276.551273","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 22184","passing","EPSG","4326","EPSG","22184","1.0","-1.0","0.0","1.3750656290003E7","9757339.48087","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 22185","passing","EPSG","4326","EPSG","22185","1.0","-1.0","0.0","1.4068894159073E7","9777744.441104","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 22186","passing","EPSG","4326","EPSG","22186","1.0","-1.0","0.0","1.4435929604171E7","9795082.873593","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 22187","passing","EPSG","4326","EPSG","22187","1.0","-1.0","0.0","1.484562238866E7","9809849.986312","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 22191","passing","EPSG","4326","EPSG","22191","1.0","-1.0","0.0","1.3163671529822E7","9671279.649903","-103.817638","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 22192","passing","EPSG","4326","EPSG","22192","1.0","-1.0","0.0","1.3289655951662E7","9704928.702963","-103.817638","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 22193","passing","EPSG","4326","EPSG","22193","1.0","-1.0","0.0","1.3488365848649E7","9733377.166894","-103.817638","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 22194","passing","EPSG","4326","EPSG","22194","1.0","-1.0","0.0","1.3750799849289E7","9757460.188528","-103.817638","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 22195","passing","EPSG","4326","EPSG","22195","1.0","-1.0","0.0","1.4069019839723E7","9777882.170246","-103.817638","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 22196","passing","EPSG","4326","EPSG","22196","1.0","-1.0","0.0","1.443603840615E7","9795235.048509","-103.817638","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 22197","passing","EPSG","4326","EPSG","22197","1.0","-1.0","0.0","1.4845715201602E7","9810014.446106","-103.817638","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 22171","passing","EPSG","4326","EPSG","22171","1.0","-1.0","0.0","13715628.232019","9609466.563341","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 22172","passing","EPSG","4326","EPSG","22172","1.0","-1.0","0.0","13630116.425822","9670247.632028","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 22173","passing","EPSG","4326","EPSG","22173","1.0","-1.0","0.0","13698671.075148","9713633.023942","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 22174","passing","EPSG","4326","EPSG","22174","1.0","-1.0","0.0","13880160.435236","9746157.213300","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 22175","passing","EPSG","4326","EPSG","22175","1.0","-1.0","0.0","14147910.338344","9771406.084630","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 22176","passing","EPSG","4326","EPSG","22176","1.0","-1.0","0.0","14483559.356534","9791525.214552","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 22177","passing","EPSG","4326","EPSG","22177","1.0","-1.0","0.0","14873889.490377","9807881.931398","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 22181","passing","EPSG","4326","EPSG","22181","1.0","-1.0","0.0","13715628.231489","9609466.563489","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 22182","passing","EPSG","4326","EPSG","22182","1.0","-1.0","0.0","13630116.425471","9670247.632144","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 22183","passing","EPSG","4326","EPSG","22183","1.0","-1.0","0.0","13698671.074903","9713633.024043","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 22184","passing","EPSG","4326","EPSG","22184","1.0","-1.0","0.0","13880160.435061","9746157.213392","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 22185","passing","EPSG","4326","EPSG","22185","1.0","-1.0","0.0","14147910.338216","9771406.084717","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 22186","passing","EPSG","4326","EPSG","22186","1.0","-1.0","0.0","14483559.356439","9791525.214636","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 22187","passing","EPSG","4326","EPSG","22187","1.0","-1.0","0.0","14873889.490305","9807881.931480","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 22191","passing","EPSG","4326","EPSG","22191","1.0","-1.0","0.0","13716056.517346","9609426.154099","-103.817638","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 22192","passing","EPSG","4326","EPSG","22192","1.0","-1.0","0.0","13630429.368689","9670277.093133","-103.817638","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 22193","passing","EPSG","4326","EPSG","22193","1.0","-1.0","0.0","13698912.397300","9713707.457841","-103.817638","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 22194","passing","EPSG","4326","EPSG","22194","1.0","-1.0","0.0","13880352.817105","9746263.188419","-103.817638","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 22195","passing","EPSG","4326","EPSG","22195","1.0","-1.0","0.0","14148066.680540","9771535.465990","-103.817638","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 22196","passing","EPSG","4326","EPSG","22196","1.0","-1.0","0.0","14483687.516758","9791672.664135","-103.817638","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 22197","passing","EPSG","4326","EPSG","22197","1.0","-1.0","0.0","14873994.514691","9808043.735031","-103.817638","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 22234","passing","EPSG","4326","EPSG","22234","1.0","-1.0","0.0","-1772015.254919","9882636.323997","20.715298","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 22235","passing","EPSG","4326","EPSG","22235","1.0","-1.0","0.0","-2498086.292875","9877253.003339","20.715298","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 22236","passing","EPSG","4326","EPSG","22236","1.0","-1.0","0.0","-3262642.56609","9869842.0968","20.715298","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 22275","passing","EPSG","4326","EPSG","22275","1.0","-1.0","0.0","1573999.145844","113681.130312","20.715298","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 22277","passing","EPSG","4326","EPSG","22277","1.0","-1.0","0.0","1804525.000855","114757.090824","20.715298","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 22279","passing","EPSG","4326","EPSG","22279","1.0","-1.0","0.0","2037385.636041","115997.387056","20.715298","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 22281","passing","EPSG","4326","EPSG","22281","1.0","-1.0","0.0","2272920.363034","117410.540869","20.715298","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 22283","passing","EPSG","4326","EPSG","22283","1.0","-1.0","0.0","2511486.63572","119006.515663","20.715298","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 22285","passing","EPSG","4326","EPSG","22285","1.0","-1.0","0.0","2753462.841422","120796.885182","20.715298","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 22287","passing","EPSG","4326","EPSG","22287","1.0","-1.0","0.0","2999251.3369","122795.031937","20.715298","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 22289","passing","EPSG","4326","EPSG","22289","1.0","-1.0","0.0","3249281.753671","125016.378794","20.715298","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 22291","passing","EPSG","4326","EPSG","22291","1.0","-1.0","0.0","3504014.597136","127478.657615","20.715298","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 22293","passing","EPSG","4326","EPSG","22293","1.0","-1.0","0.0","3763945.163977","130202.219191","20.715298","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 22275","passing","EPSG","4326","EPSG","22275","1.0","-1.0","0.0","1573999.406217","113681.134964","20.715298","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 22277","passing","EPSG","4326","EPSG","22277","1.0","-1.0","0.0","1804525.712334","114757.105092","20.715298","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 22279","passing","EPSG","4326","EPSG","22279","1.0","-1.0","0.0","2037387.403416","115997.426387","20.715298","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 22281","passing","EPSG","4326","EPSG","22281","1.0","-1.0","0.0","2272924.424689","117410.640259","20.715298","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 22283","passing","EPSG","4326","EPSG","22283","1.0","-1.0","0.0","2511495.383512","119006.749274","20.715298","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 22285","passing","EPSG","4326","EPSG","22285","1.0","-1.0","0.0","2753480.673309","120797.401620","20.715298","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 22287","passing","EPSG","4326","EPSG","22287","1.0","-1.0","0.0","2999286.007278","122796.115107","20.715298","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 22289","passing","EPSG","4326","EPSG","22289","1.0","-1.0","0.0","3249346.449639","125018.549283","20.715298","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 22291","passing","EPSG","4326","EPSG","22291","1.0","-1.0","0.0","3504131.051735","127482.836658","20.715298","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 22293","passing","EPSG","4326","EPSG","22293","1.0","-1.0","0.0","3764148.225380","130209.987195","20.715298","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 22332","passing","EPSG","4326","EPSG","22332","1.0","-1.0","0.0","-393014.863599","-112056.11109","158.258465","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 22391","passing","EPSG","4326","EPSG","22391","1.0","-1.0","0.0","-700108.94806","-4021576.445869","158.258465","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 22392","passing","EPSG","4326","EPSG","22392","1.0","-1.0","0.0","-670055.493672","-3670113.440599","158.258465","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -2967,10 +2967,10 @@ "4326 -> 22770","passing","EPSG","4326","EPSG","22770","1.0","-1.0","0.0","-4440764.103289","-3032502.167704","82.290777","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 22780","passing","EPSG","4326","EPSG","22780","1.0","-1.0","0.0","-4798555.209669","-3522755.926823","82.290777","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 22832","passing","EPSG","4326","EPSG","22832","1.0","-1.0","0.0","-393005.262375","-111613.432677","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 22991","passing","EPSG","4326","EPSG","22991","1.0","-1.0","0.0","-3729805.021239","-2353695.235182","64.81419","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 22992","passing","EPSG","4326","EPSG","22992","1.0","-1.0","0.0","-2889215.919069","-2637949.463579","64.81419","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 22993","passing","EPSG","4326","EPSG","22993","1.0","-1.0","0.0","-2299455.528963","-3243254.28211","64.81419","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 22994","passing","EPSG","4326","EPSG","22994","1.0","-1.0","0.0","-2299455.528963","-2243254.28211","64.81419","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 22991","passing","EPSG","4326","EPSG","22991","1.0","-1.0","0.0","-3730147.801615","-2353709.198534","64.81419","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 22992","passing","EPSG","4326","EPSG","22992","1.0","-1.0","0.0","-2889331.790399","-2637953.629228","64.81419","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 22993","passing","EPSG","4326","EPSG","22993","1.0","-1.0","0.0","-2299489.987112","-3243255.360497","64.81419","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 22994","passing","EPSG","4326","EPSG","22994","1.0","-1.0","0.0","-2299489.987112","-2243255.360497","64.81419","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 23028","passing","EPSG","4326","EPSG","23028","1.0","-1.0","0.0","2304050.492994","-114893.113989","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 23029","passing","EPSG","4326","EPSG","23029","1.0","-1.0","0.0","1618451.053265","-112127.082201","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 23030","passing","EPSG","4326","EPSG","23030","1.0","-1.0","0.0","945511.037548","-110683.563211","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -3039,7 +3039,7 @@ "4326 -> 24381","passing","EPSG","4326","EPSG","24381","1.0","-1.0","0.0","-6266463.018387","717165.514275","534.572378","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 24382","passing","EPSG","4326","EPSG","24382","1.0","-1.0","0.0","-8126243.946282","1558821.084859","0.0","1.000000","1.000000","1.000000","","","","Auto-generated from proj.4 epsg database" "4326 -> 24383","passing","EPSG","4326","EPSG","24383","1.0","-1.0","0.0","-6141582.473322","748487.490771","534.572378","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 24500","passing","EPSG","4326","EPSG","24500","1.0","-1.0","0.0","-1.1417724462289E7","-644920.538459","829.172201","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 24500","passing","EPSG","4326","EPSG","24500","1.0","-1.0","0.0","-11412865.021297","-644920.538459","829.172201","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 24548","passing","EPSG","4326","EPSG","24548","1.0","-1.0","0.0","-1.3011873095093E7","-1.9510192263077E7","829.172201","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 24571","passing","EPSG","4326","EPSG","24571","1.0","-1.0","0.0","-604169.570049","302330.27581","41.217933","1.000000","1.000000","1.000000","","","","Auto-generated from proj.4 epsg database" "4326 -> 24600","passing","EPSG","4326","EPSG","24600","1.0","-1.0","0.0","-4082784.085485","-1578333.002223","195.259612","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -3055,9 +3055,9 @@ "4326 -> 24880","passing","EPSG","4326","EPSG","24880","1.0","-1.0","0.0","9876544.771961","9745162.931406","27.338005","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 24881","passing","EPSG","4326","EPSG","24881","1.0","-1.0","0.0","8480440.543715","9790361.366291","27.338005","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 24882","passing","EPSG","4326","EPSG","24882","1.0","-1.0","0.0","7306356.17686","9820113.938509","27.338005","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 24891","passing","EPSG","4326","EPSG","24891","1.0","-1.0","0.0","1.4848936620636E7","1628308.684297","27.338005","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 24892","passing","EPSG","4326","EPSG","24892","1.0","-1.0","0.0","1.367119950817E7","1706038.904774","27.338005","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 24893","passing","EPSG","4326","EPSG","24893","1.0","-1.0","0.0","1.2535631537822E7","1778154.572328","27.338005","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 24891","error","EPSG","4326","EPSG","24891","1.0","-1.0","0.0","1.4848936620636E7","1628308.684297","27.338005","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 24892","passing","EPSG","4326","EPSG","24892","1.0","-1.0","0.0","14741014.229783","1565493.907259","27.338005","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 24893","passing","EPSG","4326","EPSG","24893","1.0","-1.0","0.0","12969033.702642","1732192.150950","27.338005","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 25000","passing","EPSG","4326","EPSG","25000","1.0","-1.0","0.0","496887.062684","-626826.645772","23.779236","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 25231","passing","EPSG","4326","EPSG","25231","1.0","-1.0","0.0","277434.339664","-110587.778759","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 25700","passing","EPSG","4326","EPSG","25700","1.0","-1.0","0.0","1.9900872373325E7","789629.424703","1320.943549","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -3072,7 +3072,7 @@ "4326 -> 25836","passing","EPSG","4326","EPSG","25836","1.0","-1.0","0.0","-3262671.40897","-130501.513833","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 25837","passing","EPSG","4326","EPSG","25837","1.0","-1.0","0.0","-4079577.277109","-140545.733763","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 25838","passing","EPSG","4326","EPSG","25838","1.0","-1.0","0.0","-4967185.609991","-154126.257162","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 25884","passing","EPSG","4326","EPSG","25884","1.0","-1.0","0.0","-2131028.856678","-120146.01892","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 25884","passing","EPSG","4326","EPSG","25884","1.0","-1.0","0.0","-2131041.326629","-120146.366566","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 25932","passing","EPSG","4326","EPSG","25932","1.0","-1.0","0.0","-393023.762409","9888477.645412","1.394383","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26191","passing","EPSG","4326","EPSG","26191","1.0","-1.0","0.0","1341672.961004","-3693777.50057","-144.80992","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26192","passing","EPSG","4326","EPSG","26192","1.0","-1.0","0.0","1315425.835282","-3234624.440001","-144.80992","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -3087,7 +3087,7 @@ "4326 -> 26393","passing","EPSG","4326","EPSG","26393","1.0","-1.0","0.0","-177954.361106","-555104.510305","-16.31287","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26432","passing","EPSG","4326","EPSG","26432","1.0","-1.0","0.0","-393024.994089","9888473.67526","0.291099","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26591","passing","EPSG","4326","EPSG","26591","1.0","-1.0","0.0","607000.706445","-111707.722932","-71.709798","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26592","passing","EPSG","4326","EPSG","26592","1.0","-1.0","0.0","946515.812053","-114022.912099","-71.709798","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 26592","passing","EPSG","4326","EPSG","26592","1.0","-1.0","0.0","946515.554245","-114022.916716","-71.709798","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 26632","passing","EPSG","4326","EPSG","26632","1.0","-1.0","0.0","-392875.221573","-111666.434586","-35.113455","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26692","passing","EPSG","4326","EPSG","26692","1.0","-1.0","0.0","-392875.221573","9888333.565414","-35.113455","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26701","passing","EPSG","4326","EPSG","26701","1.0","-1.0","0.0","722564.164076","-1.9885183663725E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -3110,9 +3110,9 @@ "4326 -> 26720","passing","EPSG","4326","EPSG","26720","1.0","-1.0","0.0","9876907.396809","-255732.252603","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26721","passing","EPSG","4326","EPSG","26721","1.0","-1.0","0.0","8480669.194096","-210363.755277","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26722","passing","EPSG","4326","EPSG","26722","1.0","-1.0","0.0","7306518.373057","-180502.617512","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26729","passing","EPSG","4326","EPSG","26729","1.0","-1.0","0.0","5.6145655363248E7","-1.2995986809758E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26730","passing","EPSG","4326","EPSG","26730","1.0","-1.0","0.0","5.8836323074223E7","-1.2966005846089E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26731","failing","EPSG","4326","EPSG","26731","1.0","-1.0","0.0","6.9883986607415E7","-3.2630755864469E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 26729","error","EPSG","4326","EPSG","26729","1.0","-1.0","0.0","5.6145655363248E7","-1.2995986809758E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26730","error","EPSG","4326","EPSG","26730","1.0","-1.0","0.0","5.8836323074223E7","-1.2966005846089E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26731","passing","EPSG","4326","EPSG","26731","1.0","-1.0","0.0","6.9883986607415E7","-3.2630755864469E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26740","passing","EPSG","4326","EPSG","26740","1.0","-1.0","0.0","2.7043968269598E7","4.6315083833813E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26741","passing","EPSG","4326","EPSG","26741","1.0","-1.0","0.0","4.2205997155026E7","1.8012144037188E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26742","passing","EPSG","4326","EPSG","26742","1.0","-1.0","0.0","4.2551518614508E7","1.7357530034183E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" @@ -3127,15 +3127,15 @@ "4326 -> 26754","passing","EPSG","4326","EPSG","26754","1.0","-1.0","0.0","4.026846346035E7","1.0131661324306E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26755","passing","EPSG","4326","EPSG","26755","1.0","-1.0","0.0","4.0300743907954E7","9805908.584146","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26756","passing","EPSG","4326","EPSG","26756","1.0","-1.0","0.0","3.1127463220573E7","-2715820.225578","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26757","passing","EPSG","4326","EPSG","26757","1.0","-1.0","0.0","4.2366598192304E7","-1.5039047072171E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26758","passing","EPSG","4326","EPSG","26758","1.0","-1.0","0.0","4.9155553283185E7","-1.0385262046215E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26759","passing","EPSG","4326","EPSG","26759","1.0","-1.0","0.0","5.0509131826688E7","-1.0453563941181E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 26757","passing","EPSG","4326","EPSG","26757","1.0","-1.0","0.0","45552343.540000","-15447737.780000","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed for the exact Transverse Mercator: the datum uses NAD27 grids so PROJ cannot be invoked directly, but the shift matches PROJ 9.6.0 exact-minus-approx exactly" +"4326 -> 26758","error","EPSG","4326","EPSG","26758","1.0","-1.0","0.0","4.9155553283185E7","-1.0385262046215E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26759","error","EPSG","4326","EPSG","26759","1.0","-1.0","0.0","5.0509131826688E7","-1.0453563941181E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 26760","passing","EPSG","4326","EPSG","26760","1.0","-1.0","0.0","3.4646452420898E7","1404169.449621","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26766","passing","EPSG","4326","EPSG","26766","1.0","-1.0","0.0","5.0737109978708E7","-1.2524656032261E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26767","passing","EPSG","4326","EPSG","26767","1.0","-1.0","0.0","5.3601248462724E7","-1.267475266923E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26771","passing","EPSG","4326","EPSG","26771","1.0","-1.0","0.0","6.0244842616108E7","-1.54738646582E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26773","passing","EPSG","4326","EPSG","26773","1.0","-1.0","0.0","5.5885278945107E7","-1.5528898014295E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26774","passing","EPSG","4326","EPSG","26774","1.0","-1.0","0.0","5.8150474855673E7","-1.5656164628607E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 26766","error","EPSG","4326","EPSG","26766","1.0","-1.0","0.0","5.0737109978708E7","-1.2524656032261E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26767","error","EPSG","4326","EPSG","26767","1.0","-1.0","0.0","5.3601248462724E7","-1.267475266923E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26771","error","EPSG","4326","EPSG","26771","1.0","-1.0","0.0","6.0244842616108E7","-1.54738646582E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26773","error","EPSG","4326","EPSG","26773","1.0","-1.0","0.0","5.5885278945107E7","-1.5528898014295E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26774","error","EPSG","4326","EPSG","26774","1.0","-1.0","0.0","5.8150474855673E7","-1.5656164628607E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 26775","passing","EPSG","4326","EPSG","26775","1.0","-1.0","0.0","3.8068422645457E7","5607218.965398","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26776","passing","EPSG","4326","EPSG","26776","1.0","-1.0","0.0","3.7959530318017E7","5452665.763952","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26777","passing","EPSG","4326","EPSG","26777","1.0","-1.0","0.0","3.8815684857611E7","6927215.615378","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" @@ -3144,76 +3144,76 @@ "4326 -> 26780","passing","EPSG","4326","EPSG","26780","1.0","-1.0","0.0","3.5702077129835E7","2074939.980324","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26781","passing","EPSG","4326","EPSG","26781","1.0","-1.0","0.0","3.7117165642604E7","4016189.849085","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26782","passing","EPSG","4326","EPSG","26782","1.0","-1.0","0.0","3.6676836728853E7","3465277.747164","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26783","passing","EPSG","4326","EPSG","26783","1.0","-1.0","0.0","3.5442434537351E7","-1.6885218054771E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26784","passing","EPSG","4326","EPSG","26784","1.0","-1.0","0.0","3.6983700839335E7","-1.6579219349669E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 26783","passing","EPSG","4326","EPSG","26783","1.0","-1.0","0.0","36475331.150000","-16988658.610000","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed for the exact Transverse Mercator: the datum uses NAD27 grids so PROJ cannot be invoked directly, but the shift matches PROJ 9.6.0 exact-minus-approx exactly" +"4326 -> 26784","passing","EPSG","4326","EPSG","26784","1.0","-1.0","0.0","38333455.350000","-16721401.620000","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed for the exact Transverse Mercator: the datum uses NAD27 grids so PROJ cannot be invoked directly, but the shift matches PROJ 9.6.0 exact-minus-approx exactly" "4326 -> 26785","passing","EPSG","4326","EPSG","26785","1.0","-1.0","0.0","3.2196207470069E7","-966070.630837","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26786","passing","EPSG","4326","EPSG","26786","1.0","-1.0","0.0","3.0854854959561E7","-3029755.103434","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26787","passing","EPSG","4326","EPSG","26787","1.0","-1.0","0.0","2.999794124232E7","-3602917.297568","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26791","passing","EPSG","4326","EPSG","26791","1.0","-1.0","0.0","3.8431975775394E7","6030044.172854","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26792","passing","EPSG","4326","EPSG","26792","1.0","-1.0","0.0","3.8502243606626E7","6410399.862474","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26793","passing","EPSG","4326","EPSG","26793","1.0","-1.0","0.0","3.8309278022663E7","6152997.378982","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26794","passing","EPSG","4326","EPSG","26794","1.0","-1.0","0.0","6.1107573573838E7","-1.2977517602793E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 26794","error","EPSG","4326","EPSG","26794","1.0","-1.0","0.0","6.1107573573838E7","-1.2977517602793E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 26799","passing","EPSG","4326","EPSG","26799","1.0","-1.0","0.0","4.5091438891236E7","1.7671313735304E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26801","passing","EPSG","4326","EPSG","26801","1.0","-1.0","0.0","5.2871091546248E7","-1.682277689412E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26802","passing","EPSG","4326","EPSG","26802","1.0","-1.0","0.0","5.6014388722888E7","-1.6992722822314E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26803","passing","EPSG","4326","EPSG","26803","1.0","-1.0","0.0","6.096180824357E7","-1.727598315855E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 26801","error","EPSG","4326","EPSG","26801","1.0","-1.0","0.0","5.2871091546248E7","-1.682277689412E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26802","error","EPSG","4326","EPSG","26802","1.0","-1.0","0.0","5.6014388722888E7","-1.6992722822314E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26803","error","EPSG","4326","EPSG","26803","1.0","-1.0","0.0","6.096180824357E7","-1.727598315855E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 26811","passing","EPSG","4326","EPSG","26811","1.0","-1.0","0.0","3.7056411031157E7","3191471.839061","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26812","passing","EPSG","4326","EPSG","26812","1.0","-1.0","0.0","3.6262663298794E7","2035914.592439","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26813","passing","EPSG","4326","EPSG","26813","1.0","-1.0","0.0","3.5985167577355E7","1892503.899742","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26814","passing","EPSG","4326","EPSG","26814","1.0","-1.0","0.0","1.0950069857247E7","-5128313.037419","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26815","passing","EPSG","4326","EPSG","26815","1.0","-1.0","0.0","1.2019814649506E7","-5053556.85185","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 26814","passing","EPSG","4326","EPSG","26814","1.0","-1.0","0.0","11264435.163777","-5159779.714468","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 26815","passing","EPSG","4326","EPSG","26815","1.0","-1.0","0.0","12430605.282352","-5096804.786367","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 26819","passing","EPSG","4326","EPSG","26819","1.0","-1.0","0.0","1.190460508535E7","1937737.131009","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26820","passing","EPSG","4326","EPSG","26820","1.0","-1.0","0.0","1.192601192143E7","2053668.621488","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26821","passing","EPSG","4326","EPSG","26821","1.0","-1.0","0.0","1.1867181831433E7","1975209.580317","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26822","passing","EPSG","4326","EPSG","26822","1.0","-1.0","0.0","1.1859582682393E7","2563845.950141","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26823","passing","EPSG","4326","EPSG","26823","1.0","-1.0","0.0","1.1794319928427E7","-22718.221242","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26824","passing","EPSG","4326","EPSG","26824","1.0","-1.0","0.0","1.1866227874924E7","147442.835148","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26825","passing","EPSG","4326","EPSG","26825","1.0","-1.0","0.0","1.0950069857247E7","-5128313.037419","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26826","passing","EPSG","4326","EPSG","26826","1.0","-1.0","0.0","1.2019814649506E7","-5053556.85185","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 26825","passing","EPSG","4326","EPSG","26825","1.0","-1.0","0.0","11264435.163777","-5159779.714468","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 26826","passing","EPSG","4326","EPSG","26826","1.0","-1.0","0.0","12430605.282352","-5096804.786367","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 26830","passing","EPSG","4326","EPSG","26830","1.0","-1.0","0.0","1.190460508535E7","1937737.131009","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26831","passing","EPSG","4326","EPSG","26831","1.0","-1.0","0.0","1.192601192143E7","2053668.621488","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26832","passing","EPSG","4326","EPSG","26832","1.0","-1.0","0.0","1.1867181831433E7","1975209.580317","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26833","passing","EPSG","4326","EPSG","26833","1.0","-1.0","0.0","1.1859582682393E7","2563845.950141","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26834","passing","EPSG","4326","EPSG","26834","1.0","-1.0","0.0","1.1794319928427E7","-22718.221242","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26835","passing","EPSG","4326","EPSG","26835","1.0","-1.0","0.0","1.1866227874924E7","147442.835148","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26836","passing","EPSG","4326","EPSG","26836","1.0","-1.0","0.0","1.0950069857247E7","-5128313.037419","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26837","passing","EPSG","4326","EPSG","26837","1.0","-1.0","0.0","1.2019814649506E7","-5053556.85185","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 26836","passing","EPSG","4326","EPSG","26836","1.0","-1.0","0.0","11264435.163777","-5159779.714468","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 26837","passing","EPSG","4326","EPSG","26837","1.0","-1.0","0.0","12430605.282352","-5096804.786367","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 26841","passing","EPSG","4326","EPSG","26841","1.0","-1.0","0.0","1.190460508535E7","1937737.131009","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26842","passing","EPSG","4326","EPSG","26842","1.0","-1.0","0.0","1.192601192143E7","2053668.621488","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26843","passing","EPSG","4326","EPSG","26843","1.0","-1.0","0.0","1.1867181831433E7","1975209.580317","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26844","passing","EPSG","4326","EPSG","26844","1.0","-1.0","0.0","1.1859582682393E7","2563845.950141","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26845","passing","EPSG","4326","EPSG","26845","1.0","-1.0","0.0","1.1794319928427E7","-22718.221242","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26846","passing","EPSG","4326","EPSG","26846","1.0","-1.0","0.0","1.1866227874924E7","147442.835148","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26847","passing","EPSG","4326","EPSG","26847","1.0","-1.0","0.0","3.5925354189983E7","-1.6825140356933E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26848","passing","EPSG","4326","EPSG","26848","1.0","-1.0","0.0","3.9435008562586E7","-1.6579877771445E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 26847","passing","EPSG","4326","EPSG","26847","1.0","-1.0","0.0","36956734.366491","-16928377.279884","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 26848","passing","EPSG","4326","EPSG","26848","1.0","-1.0","0.0","40782744.163849","-16721767.036607","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 26849","passing","EPSG","4326","EPSG","26849","1.0","-1.0","0.0","3.9057025184185E7","6357392.570651","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26850","passing","EPSG","4326","EPSG","26850","1.0","-1.0","0.0","3.912725744556E7","6737744.468998","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26851","passing","EPSG","4326","EPSG","26851","1.0","-1.0","0.0","3.8934245725294E7","6480333.431424","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26852","passing","EPSG","4326","EPSG","26852","1.0","-1.0","0.0","3.8909314183819E7","8411551.254754","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26853","passing","EPSG","4326","EPSG","26853","1.0","-1.0","0.0","3.4205377548515E7","-74534.697525","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26854","passing","EPSG","4326","EPSG","26854","1.0","-1.0","0.0","3.4441295536315E7","483735.368313","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26855","passing","EPSG","4326","EPSG","26855","1.0","-1.0","0.0","3.5925354189983E7","-1.6825140356933E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26856","passing","EPSG","4326","EPSG","26856","1.0","-1.0","0.0","3.9435008562586E7","-1.6579877771445E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 26855","passing","EPSG","4326","EPSG","26855","1.0","-1.0","0.0","36956734.366491","-16928377.279884","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 26856","passing","EPSG","4326","EPSG","26856","1.0","-1.0","0.0","40782744.163849","-16721767.036607","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 26857","passing","EPSG","4326","EPSG","26857","1.0","-1.0","0.0","3.9057025184185E7","6357392.570651","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26858","passing","EPSG","4326","EPSG","26858","1.0","-1.0","0.0","3.912725744556E7","6737744.468998","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26859","passing","EPSG","4326","EPSG","26859","1.0","-1.0","0.0","3.8934245725294E7","6480333.431424","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26860","passing","EPSG","4326","EPSG","26860","1.0","-1.0","0.0","3.8909314183819E7","8411551.254754","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26861","passing","EPSG","4326","EPSG","26861","1.0","-1.0","0.0","3.4205377548515E7","-74534.697525","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26862","passing","EPSG","4326","EPSG","26862","1.0","-1.0","0.0","3.4441295536315E7","483735.368313","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26863","passing","EPSG","4326","EPSG","26863","1.0","-1.0","0.0","3.5925354189983E7","-1.6825140356933E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26864","passing","EPSG","4326","EPSG","26864","1.0","-1.0","0.0","3.9435008562586E7","-1.6579877771445E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 26863","passing","EPSG","4326","EPSG","26863","1.0","-1.0","0.0","36956734.366491","-16928377.279884","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 26864","passing","EPSG","4326","EPSG","26864","1.0","-1.0","0.0","40782744.163849","-16721767.036607","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 26865","passing","EPSG","4326","EPSG","26865","1.0","-1.0","0.0","3.9057025184185E7","6357392.570651","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26866","passing","EPSG","4326","EPSG","26866","1.0","-1.0","0.0","3.912725744556E7","6737744.468998","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26867","passing","EPSG","4326","EPSG","26867","1.0","-1.0","0.0","3.8934245725294E7","6480333.431424","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26868","passing","EPSG","4326","EPSG","26868","1.0","-1.0","0.0","3.8909314183819E7","8411551.254754","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26869","passing","EPSG","4326","EPSG","26869","1.0","-1.0","0.0","3.4205377548515E7","-74534.697525","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26870","passing","EPSG","4326","EPSG","26870","1.0","-1.0","0.0","3.4441295536315E7","483735.368313","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26891","passing","EPSG","4326","EPSG","26891","1.0","-1.0","0.0","1.5757736995238E7","-505151.848614","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26892","passing","EPSG","4326","EPSG","26892","1.0","-1.0","0.0","1.5133700109056E7","-473481.699571","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26893","passing","EPSG","4326","EPSG","26893","1.0","-1.0","0.0","1.6414214001085E7","-539612.639806","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26894","passing","EPSG","4326","EPSG","26894","1.0","-1.0","0.0","1.7833009909167E7","-617882.974409","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26898","passing","EPSG","4326","EPSG","26898","1.0","-1.0","0.0","7461465.728259","-187672.479556","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26899","passing","EPSG","4326","EPSG","26899","1.0","-1.0","0.0","8038728.049406","-201676.577898","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 26891","error","EPSG","4326","EPSG","26891","1.0","-1.0","0.0","1.5757736995238E7","-505151.848614","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26892","error","EPSG","4326","EPSG","26892","1.0","-1.0","0.0","1.5133700109056E7","-473481.699571","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26893","error","EPSG","4326","EPSG","26893","1.0","-1.0","0.0","1.6414214001085E7","-539612.639806","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26894","error","EPSG","4326","EPSG","26894","1.0","-1.0","0.0","1.7833009909167E7","-617882.974409","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26898","passing","EPSG","4326","EPSG","26898","1.0","-1.0","0.0","7485122.173446","-189281.454101","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 26899","passing","EPSG","4326","EPSG","26899","1.0","-1.0","0.0","8078826.347523","-204602.141116","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 26901","passing","EPSG","4326","EPSG","26901","1.0","-1.0","0.0","722561.736479","-1.9885331913357E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26902","passing","EPSG","4326","EPSG","26902","1.0","-1.0","0.0","1392989.214538","-1.988430627929E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26903","passing","EPSG","4326","EPSG","26903","1.0","-1.0","0.0","2073447.882706","-1.9881992849135E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -3235,9 +3235,9 @@ "4326 -> 26921","passing","EPSG","4326","EPSG","26921","1.0","-1.0","0.0","8480365.932792","-210356.338473","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26922","passing","EPSG","4326","EPSG","26922","1.0","-1.0","0.0","7306321.314799","-180502.818931","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26923","passing","EPSG","4326","EPSG","26923","1.0","-1.0","0.0","6282890.195008","-159676.099533","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26929","passing","EPSG","4326","EPSG","26929","1.0","-1.0","0.0","1.7159919726823E7","-3961313.962369","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26930","passing","EPSG","4326","EPSG","26930","1.0","-1.0","0.0","1.8379967073642E7","-3952167.354801","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26931","failing","EPSG","4326","EPSG","26931","1.0","-1.0","0.0","2.1299477541839E7","-9945672.888623","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 26929","error","EPSG","4326","EPSG","26929","1.0","-1.0","0.0","1.7159919726823E7","-3961313.962369","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26930","error","EPSG","4326","EPSG","26930","1.0","-1.0","0.0","1.8379967073642E7","-3952167.354801","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26931","passing","EPSG","4326","EPSG","26931","1.0","-1.0","0.0","2.1299477541839E7","-9945672.888623","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26940","passing","EPSG","4326","EPSG","26940","1.0","-1.0","0.0","8328717.21702","1.4116821977524E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26941","passing","EPSG","4326","EPSG","26941","1.0","-1.0","0.0","1.4254884235227E7","5989905.116896","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26942","passing","EPSG","4326","EPSG","26942","1.0","-1.0","0.0","1.4360185801786E7","5790374.152313","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -3251,15 +3251,15 @@ "4326 -> 26954","passing","EPSG","4326","EPSG","26954","1.0","-1.0","0.0","1.2578707874327E7","3392714.933988","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26955","passing","EPSG","4326","EPSG","26955","1.0","-1.0","0.0","1.2588537408885E7","3293424.901576","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26956","passing","EPSG","4326","EPSG","26956","1.0","-1.0","0.0","9609648.833132","-675630.039935","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26957","passing","EPSG","4326","EPSG","26957","1.0","-1.0","0.0","1.2960400053583E7","-4584092.979322","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26958","passing","EPSG","4326","EPSG","26958","1.0","-1.0","0.0","1.5029510779743E7","-3165551.699573","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26959","passing","EPSG","4326","EPSG","26959","1.0","-1.0","0.0","1.5442048203015E7","-3186367.239404","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 26957","passing","EPSG","4326","EPSG","26957","1.0","-1.0","0.0","13929727.098412","-4708319.149141","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 26958","error","EPSG","4326","EPSG","26958","1.0","-1.0","0.0","1.5029510779743E7","-3165551.699573","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26959","error","EPSG","4326","EPSG","26959","1.0","-1.0","0.0","1.5442048203015E7","-3186367.239404","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 26960","passing","EPSG","4326","EPSG","26960","1.0","-1.0","0.0","1.0550650155667E7","427782.799905","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26966","passing","EPSG","4326","EPSG","26966","1.0","-1.0","0.0","1.5511530289253E7","-3817662.34613","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26967","passing","EPSG","4326","EPSG","26967","1.0","-1.0","0.0","1.6884448431364E7","-3863405.498204","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26971","passing","EPSG","4326","EPSG","26971","1.0","-1.0","0.0","1.8509247999883E7","-4716583.113964","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26973","passing","EPSG","4326","EPSG","26973","1.0","-1.0","0.0","1.6980563567191E7","-4483369.918208","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26974","passing","EPSG","4326","EPSG","26974","1.0","-1.0","0.0","1.8470937971857E7","-4522155.488717","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 26966","error","EPSG","4326","EPSG","26966","1.0","-1.0","0.0","1.5511530289253E7","-3817662.34613","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26967","error","EPSG","4326","EPSG","26967","1.0","-1.0","0.0","1.6884448431364E7","-3863405.498204","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26971","error","EPSG","4326","EPSG","26971","1.0","-1.0","0.0","1.8509247999883E7","-4716583.113964","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26973","error","EPSG","4326","EPSG","26973","1.0","-1.0","0.0","1.6980563567191E7","-4483369.918208","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26974","error","EPSG","4326","EPSG","26974","1.0","-1.0","0.0","1.8470937971857E7","-4522155.488717","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 26975","passing","EPSG","4326","EPSG","26975","1.0","-1.0","0.0","1.2493754958641E7","2708853.657912","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26976","passing","EPSG","4326","EPSG","26976","1.0","-1.0","0.0","1.1460553625321E7","1661745.543903","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26977","passing","EPSG","4326","EPSG","26977","1.0","-1.0","0.0","1.1621497257386E7","2111191.990303","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -3268,8 +3268,8 @@ "4326 -> 26980","passing","EPSG","4326","EPSG","26980","1.0","-1.0","0.0","1.0772450358835E7","1132211.773774","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26981","passing","EPSG","4326","EPSG","26981","1.0","-1.0","0.0","1.1703735500459E7","1242402.341635","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26982","passing","EPSG","4326","EPSG","26982","1.0","-1.0","0.0","1.1569510967566E7","1074486.392019","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26983","passing","EPSG","4326","EPSG","26983","1.0","-1.0","0.0","1.0950069857247E7","-5128313.037419","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26984","passing","EPSG","4326","EPSG","26984","1.0","-1.0","0.0","1.2019814649506E7","-5053556.85185","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 26983","passing","EPSG","4326","EPSG","26983","1.0","-1.0","0.0","11264435.163777","-5159779.714468","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 26984","passing","EPSG","4326","EPSG","26984","1.0","-1.0","0.0","12430605.282352","-5096804.786367","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 26985","passing","EPSG","4326","EPSG","26985","1.0","-1.0","0.0","9969626.935369","-276195.787551","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26986","passing","EPSG","4326","EPSG","26986","1.0","-1.0","0.0","9421760.598902","-173719.119739","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26987","passing","EPSG","4326","EPSG","26987","1.0","-1.0","0.0","9582487.179385","-1098419.84739","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -3279,7 +3279,7 @@ "4326 -> 26991","passing","EPSG","4326","EPSG","26991","1.0","-1.0","0.0","1.190460508534E7","1937737.131019","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26992","passing","EPSG","4326","EPSG","26992","1.0","-1.0","0.0","1.192601192142E7","2053668.621498","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26993","passing","EPSG","4326","EPSG","26993","1.0","-1.0","0.0","1.1867181831423E7","1975209.580327","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 26994","passing","EPSG","4326","EPSG","26994","1.0","-1.0","0.0","1.8772001648449E7","-3937156.383224","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 26994","error","EPSG","4326","EPSG","26994","1.0","-1.0","0.0","1.8772001648449E7","-3937156.383224","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 27037","passing","EPSG","4326","EPSG","27037","1.0","-1.0","0.0","-4079506.784381","-141028.903381","146.270504","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 27038","passing","EPSG","4326","EPSG","27038","1.0","-1.0","0.0","-4967147.432985","-154658.185173","146.270504","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 27039","passing","EPSG","4326","EPSG","27039","1.0","-1.0","0.0","-5951010.944853","-173360.355794","146.270504","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -3293,10 +3293,10 @@ "4326 -> 27392","passing","EPSG","4326","EPSG","27392","1.0","-1.0","0.0","-824586.574904","-6542688.927929","333.820782","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 27393","passing","EPSG","4326","EPSG","27393","1.0","-1.0","0.0","-1087225.362075","-6543381.777679","333.820782","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 27394","passing","EPSG","4326","EPSG","27394","1.0","-1.0","0.0","-1370690.790138","-6544345.61607","333.820782","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 27395","passing","EPSG","4326","EPSG","27395","1.0","-1.0","0.0","-1791513.777118","-6546194.40661","333.820782","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 27396","passing","EPSG","4326","EPSG","27396","1.0","-1.0","0.0","-2259554.677","-6548846.596921","333.820782","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 27397","passing","EPSG","4326","EPSG","27397","1.0","-1.0","0.0","-2739658.081432","-6552234.213767","333.820782","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 27398","passing","EPSG","4326","EPSG","27398","1.0","-1.0","0.0","-3255958.662717","-6556653.281086","333.820782","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 27395","passing","EPSG","4326","EPSG","27395","1.0","-1.0","0.0","-1791514.442452","-6546194.419942","333.820782","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 27396","passing","EPSG","4326","EPSG","27396","1.0","-1.0","0.0","-2259558.519840","-6548846.691020","333.820782","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 27397","passing","EPSG","4326","EPSG","27397","1.0","-1.0","0.0","-2739675.093616","-6552234.707245","333.820782","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 27398","passing","EPSG","4326","EPSG","27398","1.0","-1.0","0.0","-3256023.986282","-6556655.490249","333.820782","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 27429","passing","EPSG","4326","EPSG","27429","1.0","-1.0","0.0","1618236.843372","-112284.086911","-29.085363","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 27492","passing","EPSG","4326","EPSG","27492","1.0","-1.0","0.0","1020868.174582","-4504721.085398","-29.085363","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 27493","passing","EPSG","4326","EPSG","27493","1.0","-1.0","0.0","1020868.174582","-4504721.085398","-29.085363","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -3318,9 +3318,9 @@ "4326 -> 27593","passing","EPSG","4326","EPSG","27593","1.0","-1.0","0.0","403662.941422","-5299940.941008","62.495489","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 27594","passing","EPSG","4326","EPSG","27594","1.0","-1.0","0.0","-192052.368919","-5038091.636738","62.495489","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 27700","passing","EPSG","4326","EPSG","27700","1.0","-1.0","0.0","734004.745925","-5638279.547703","269.614465","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 28191","passing","EPSG","4326","EPSG","28191","1.0","-1.0","0.0","-3637406.713803","-3519213.345137","109.910871","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 28192","passing","EPSG","4326","EPSG","28192","1.0","-1.0","0.0","-3887709.343918","-2519729.207075","109.910871","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 28193","passing","EPSG","4326","EPSG","28193","1.0","-1.0","0.0","-3637406.713803","-2519213.345137","109.910871","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 28191","passing","EPSG","4326","EPSG","28191","1.0","-1.0","0.0","-3637386.761235","-3519213.345137","109.910871","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 28192","passing","EPSG","4326","EPSG","28192","1.0","-1.0","0.0","-3888072.653969","-2519744.175070","109.910871","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 28193","passing","EPSG","4326","EPSG","28193","1.0","-1.0","0.0","-3637386.761235","-2519213.345137","109.910871","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 28232","passing","EPSG","4326","EPSG","28232","1.0","-1.0","0.0","-393060.041428","9888670.468661","29.898905","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 28348","passing","EPSG","4326","EPSG","28348","1.0","-1.0","0.0","-1.3018825808604E7","-9511914.602454","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 28349","passing","EPSG","4326","EPSG","28349","1.0","-1.0","0.0","-1.0625664379252E7","-9664344.475914","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -3334,38 +3334,38 @@ "4326 -> 28357","passing","EPSG","4326","EPSG","28357","1.0","-1.0","0.0","-2010550.966654","-9876655.612744","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 28358","passing","EPSG","4326","EPSG","28358","1.0","-1.0","0.0","-1303877.831952","-9880914.514046","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 28402","passing","EPSG","4326","EPSG","28402","1.0","-1.0","0.0","1606755.564543","-111577.648952","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 28403","passing","EPSG","4326","EPSG","28403","1.0","-1.0","0.0","1926015.591579","-113889.892938","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 28404","passing","EPSG","4326","EPSG","28404","1.0","-1.0","0.0","2227099.304418","-117625.665195","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 28405","passing","EPSG","4326","EPSG","28405","1.0","-1.0","0.0","2500777.051386","-123019.272688","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 28406","passing","EPSG","4326","EPSG","28406","1.0","-1.0","0.0","2736097.573785","-130438.868024","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 28407","passing","EPSG","4326","EPSG","28407","1.0","-1.0","0.0","2919575.033239","-140444.383403","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 28408","passing","EPSG","4326","EPSG","28408","1.0","-1.0","0.0","3034144.013555","-153876.103477","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 28409","passing","EPSG","4326","EPSG","28409","1.0","-1.0","0.0","3057828.950581","-171984.62562","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 28410","passing","EPSG","4326","EPSG","28410","1.0","-1.0","0.0","2962074.443583","-196615.180042","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 28411","passing","EPSG","4326","EPSG","28411","1.0","-1.0","0.0","2709682.901623","-230461.506074","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 28412","passing","EPSG","4326","EPSG","28412","1.0","-1.0","0.0","2252305.978459","-277406.704894","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 28413","passing","EPSG","4326","EPSG","28413","1.0","-1.0","0.0","1527436.249459","-342970.712816","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 28414","passing","EPSG","4326","EPSG","28414","1.0","-1.0","0.0","454845.584033","-434886.26325","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 28415","passing","EPSG","4326","EPSG","28415","1.0","-1.0","0.0","-1067583.332906","-563827.429285","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 28403","passing","EPSG","4326","EPSG","28403","1.0","-1.0","0.0","1926015.334706","-113889.897528","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 28404","passing","EPSG","4326","EPSG","28404","1.0","-1.0","0.0","2227095.280719","-117625.763728","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 28405","passing","EPSG","4326","EPSG","28405","1.0","-1.0","0.0","2500742.615523","-123020.349552","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 28406","passing","EPSG","4326","EPSG","28406","1.0","-1.0","0.0","2735895.547875","-130446.604869","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 28407","passing","EPSG","4326","EPSG","28407","1.0","-1.0","0.0","2918659.296665","-140486.181429","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 28408","passing","EPSG","4326","EPSG","28408","1.0","-1.0","0.0","3030694.782038","-154060.405066","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 28409","passing","EPSG","4326","EPSG","28409","1.0","-1.0","0.0","3046492.440714","-172685.770091","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 28410","passing","EPSG","4326","EPSG","28410","1.0","-1.0","0.0","2928378.382166","-199014.660104","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 28411","passing","EPSG","4326","EPSG","28411","1.0","-1.0","0.0","2616426.621714","-238118.882807","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 28412","passing","EPSG","4326","EPSG","28412","1.0","-1.0","0.0","2005180.930245","-301089.152495","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 28413","passing","EPSG","4326","EPSG","28413","1.0","-1.0","0.0","877851.640808","-418233.840425","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 28414","passing","EPSG","4326","EPSG","28414","1.0","-1.0","0.0","-1365495.887991","-723872.049499","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 28415","passing","EPSG","4326","EPSG","28415","1.0","-1.0","0.0","6109103.176763","-13454506.333789","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 28462","passing","EPSG","4326","EPSG","28462","1.0","-1.0","0.0","-393244.435457","-111577.648952","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 28463","passing","EPSG","4326","EPSG","28463","1.0","-1.0","0.0","-1073984.408421","-113889.892938","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 28464","passing","EPSG","4326","EPSG","28464","1.0","-1.0","0.0","-1772900.695582","-117625.665195","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 28465","passing","EPSG","4326","EPSG","28465","1.0","-1.0","0.0","-2499222.948614","-123019.272688","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 28466","passing","EPSG","4326","EPSG","28466","1.0","-1.0","0.0","-3263902.426215","-130438.868024","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 28467","passing","EPSG","4326","EPSG","28467","1.0","-1.0","0.0","-4080424.966761","-140444.383403","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 28468","passing","EPSG","4326","EPSG","28468","1.0","-1.0","0.0","-4965855.986445","-153876.103477","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 28469","passing","EPSG","4326","EPSG","28469","1.0","-1.0","0.0","-5942171.049419","-171984.62562","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 28470","passing","EPSG","4326","EPSG","28470","1.0","-1.0","0.0","-7037925.556417","-196615.180042","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 28471","passing","EPSG","4326","EPSG","28471","1.0","-1.0","0.0","-8290317.098377","-230461.506074","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 28472","passing","EPSG","4326","EPSG","28472","1.0","-1.0","0.0","-9747694.021541","-277406.704894","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 28473","passing","EPSG","4326","EPSG","28473","1.0","-1.0","0.0","-1.1472563750541E7","-342970.712816","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 28474","passing","EPSG","4326","EPSG","28474","1.0","-1.0","0.0","-1.3545154415967E7","-434886.26325","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 28475","passing","EPSG","4326","EPSG","28475","1.0","-1.0","0.0","-1.6067583332906E7","-563827.429285","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 28600","passing","EPSG","4326","EPSG","28600","1.0","-1.0","0.0","-6279321.50984","-2578061.125026","-117.534217","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 28463","passing","EPSG","4326","EPSG","28463","1.0","-1.0","0.0","-1073984.665294","-113889.897528","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 28464","passing","EPSG","4326","EPSG","28464","1.0","-1.0","0.0","-1772904.719281","-117625.763728","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 28465","passing","EPSG","4326","EPSG","28465","1.0","-1.0","0.0","-2499257.384477","-123020.349552","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 28466","passing","EPSG","4326","EPSG","28466","1.0","-1.0","0.0","-3264104.452125","-130446.604869","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 28467","passing","EPSG","4326","EPSG","28467","1.0","-1.0","0.0","-4081340.703335","-140486.181429","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 28468","passing","EPSG","4326","EPSG","28468","1.0","-1.0","0.0","-4969305.217962","-154060.405066","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 28469","passing","EPSG","4326","EPSG","28469","1.0","-1.0","0.0","-5953507.559286","-172685.770091","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 28470","passing","EPSG","4326","EPSG","28470","1.0","-1.0","0.0","-7071621.617834","-199014.660104","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 28471","passing","EPSG","4326","EPSG","28471","1.0","-1.0","0.0","-8383573.378286","-238118.882807","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 28472","passing","EPSG","4326","EPSG","28472","1.0","-1.0","0.0","-9994819.069755","-301089.152495","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 28473","passing","EPSG","4326","EPSG","28473","1.0","-1.0","0.0","-12122148.359192","-418233.840425","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 28474","passing","EPSG","4326","EPSG","28474","1.0","-1.0","0.0","-15365495.887991","-723872.049499","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 28475","passing","EPSG","4326","EPSG","28475","1.0","-1.0","0.0","-8890896.823237","-13454506.333789","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 28600","passing","EPSG","4326","EPSG","28600","1.0","-1.0","0.0","-6291136.475784","-2578796.460934","-117.534217","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 28991","passing","EPSG","4326","EPSG","28991","1.0","-1.0","0.0","-610004.7560194525","-6339134.609735748","155.870901","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 28992","passing","EPSG","4326","EPSG","28992","1.0","-1.0","0.0","-455004.75601945247","-5876134.609735748","155.870901","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 29100","failing","EPSG","4326","EPSG","29100","1.0","-1.0","0.0","1.112138038439E7","9838209.400636","33.250022","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 29101","failing","EPSG","4326","EPSG","29101","1.0","-1.0","0.0","1.1121376792659E7","9838206.08472","43.101417","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 29100","passing","EPSG","4326","EPSG","29100","1.0","-1.0","0.0","1.112138038439E7","9838209.400636","33.250022","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 29101","passing","EPSG","4326","EPSG","29101","1.0","-1.0","0.0","1.1121376792659E7","9838206.08472","43.101417","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 29118","passing","EPSG","4326","EPSG","29118","1.0","-1.0","0.0","1.4018886276065E7","-483834.461592","33.250022","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 29119","passing","EPSG","4326","EPSG","29119","1.0","-1.0","0.0","1.1625707302665E7","-331460.933386","33.250022","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 29120","passing","EPSG","4326","EPSG","29120","1.0","-1.0","0.0","9876442.350263","-255610.071147","33.250022","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -3399,10 +3399,10 @@ "4326 -> 29373","passing","EPSG","4326","EPSG","29373","1.0","-1.0","0.0","1345499.253014","-2320760.81087","31.234146","1.000000","1.000000","1.000000","","","","Auto-generated from proj.4 epsg database" "4326 -> 29375","passing","EPSG","4326","EPSG","29375","1.0","-1.0","0.0","1573984.312872","-2319841.632343","31.234146","1.000000","1.000000","1.000000","","","","Auto-generated from proj.4 epsg database" "4326 -> 29377","passing","EPSG","4326","EPSG","29377","1.0","-1.0","0.0","1804480.132627","-2318765.305091","31.234146","1.000000","1.000000","1.000000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 29379","passing","EPSG","4326","EPSG","29379","1.0","-1.0","0.0","2037310.368834","-2317524.605647","31.234146","1.000000","1.000000","1.000000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 29381","passing","EPSG","4326","EPSG","29381","1.0","-1.0","0.0","2272814.244673","-2316111.011438","31.234146","1.000000","1.000000","1.000000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 29383","passing","EPSG","4326","EPSG","29383","1.0","-1.0","0.0","2511349.12","-2314514.558378","31.234146","1.000000","1.000000","1.000000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 29385","passing","EPSG","4326","EPSG","29385","1.0","-1.0","0.0","2753293.281741","-2312723.672065","31.234146","1.000000","1.000000","1.000000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 29379","passing","EPSG","4326","EPSG","29379","1.0","-1.0","0.0","2037312.115633","-2317524.566806","31.234146","1.000000","1.000000","1.000000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 29381","passing","EPSG","4326","EPSG","29381","1.0","-1.0","0.0","2272818.264297","-2316110.913149","31.234146","1.000000","1.000000","1.000000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 29383","passing","EPSG","4326","EPSG","29383","1.0","-1.0","0.0","2511357.786978","-2314514.327075","31.234146","1.000000","1.000000","1.000000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 29385","passing","EPSG","4326","EPSG","29385","1.0","-1.0","0.0","2753310.965919","-2312723.160195","31.234146","1.000000","1.000000","1.000000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 29635","passing","EPSG","4326","EPSG","29635","1.0","-1.0","0.0","-2498201.186337","-123062.085754","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 29636","passing","EPSG","4326","EPSG","29636","1.0","-1.0","0.0","-3262763.597184","-130492.305708","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 29700","passing","EPSG","4326","EPSG","29700","1.0","-1.0","0.0","-5462219.928238","2474640.647579","-59.390039","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -3411,14 +3411,14 @@ "4326 -> 29739","passing","EPSG","4326","EPSG","29739","1.0","-1.0","0.0","-5950919.940336","9827384.447968","-59.390039","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 29849","passing","EPSG","4326","EPSG","29849","1.0","-1.0","0.0","-1.0621569106857E7","-1.9662402939054E7","1504.706496","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 29850","passing","EPSG","4326","EPSG","29850","1.0","-1.0","0.0","-8873307.379418","-1.9738140539351E7","1504.706496","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 29871","failing","EPSG","4326","EPSG","29871","1.0","-1.0","0.0","-616802.381396","-216616.294447","74.798631","1.000000","1.000000","1.000000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 29872","failing","EPSG","4326","EPSG","29872","1.0","-1.0","0.0","-4.0708957167923E7","-1.4296675428702E7","4936.709663","1.000000","1.000000","1.000000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 29873","failing","EPSG","4326","EPSG","29873","1.0","-1.0","0.0","-1.2408068634417E7","-4357619.119986","1504.706496","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 29871","passing","EPSG","4326","EPSG","29871","1.0","-1.0","0.0","-616802.381396","-216616.294447","74.798631","1.000000","1.000000","1.000000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 29872","passing","EPSG","4326","EPSG","29872","1.0","-1.0","0.0","-4.0708957167923E7","-1.4296675428702E7","4936.709663","1.000000","1.000000","1.000000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 29873","passing","EPSG","4326","EPSG","29873","1.0","-1.0","0.0","-1.2408068634417E7","-4357619.119986","1504.706496","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 29900","passing","EPSG","4326","EPSG","29900","1.0","-1.0","0.0","1205963.412118","-5792361.190233","274.586154","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 29901","passing","EPSG","4326","EPSG","29901","1.0","-1.0","0.0","1205963.415455","-5792361.262972","51.410197","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 29902","passing","EPSG","4326","EPSG","29902","1.0","-1.0","0.0","1205963.412118","-5792361.190233","274.586154","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 29903","passing","EPSG","4326","EPSG","29903","1.0","-1.0","0.0","1205963.415517","-5792361.233241","274.616969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 30200","passing","EPSG","4326","EPSG","30200","1.0","-1.0","0.0","3.4916514253334E7","-6458942.593441","-455.219705","1.000000","1.000000","1.000000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 30200","passing","EPSG","4326","EPSG","30200","1.0","-1.0","0.0","34914522.623345","-6458942.593441","-455.219705","1.000000","1.000000","1.000000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 30339","passing","EPSG","4326","EPSG","30339","1.0","-1.0","0.0","-5951059.314285","-172762.096523","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 30340","passing","EPSG","4326","EPSG","30340","1.0","-1.0","0.0","-7068744.582763","-199103.697686","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 30491","passing","EPSG","4326","EPSG","30491","1.0","-1.0","0.0","270763.241623","-4074162.132384","-30.835159","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -3431,46 +3431,46 @@ "4326 -> 30732","passing","EPSG","4326","EPSG","30732","1.0","-1.0","0.0","-392937.70497","-111921.649712","115.134222","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 30791","passing","EPSG","4326","EPSG","30791","1.0","-1.0","0.0","270679.056637","-4074150.453837","115.134222","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 30792","passing","EPSG","4326","EPSG","30792","1.0","-1.0","0.0","276463.189773","-3717968.123774","115.134222","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 30800","passing","EPSG","4326","EPSG","30800","1.0","-1.0","0.0","-166786.241696","-114388.200176","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 30800","passing","EPSG","4326","EPSG","30800","1.0","-1.0","0.0","-166786.631850","-114388.207499","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 31028","passing","EPSG","4326","EPSG","31028","1.0","-1.0","0.0","2303713.630165","-115109.014476","-83.861583","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 31121","passing","EPSG","4326","EPSG","31121","1.0","-1.0","0.0","8480544.874541","-209676.565966","5.616498","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 31154","passing","EPSG","4326","EPSG","31154","1.0","-1.0","0.0","7842819.11059","-191416.30486","5.616498","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 31170","passing","EPSG","4326","EPSG","31170","1.0","-1.0","0.0","8169010.029112","-199382.844453","5.616498","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 31171","passing","EPSG","4326","EPSG","31171","1.0","-1.0","0.0","8171311.652771","-199442.683242","5.616498","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 31154","passing","EPSG","4326","EPSG","31154","1.0","-1.0","0.0","7871089.319686","-193378.321089","5.616498","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 31170","passing","EPSG","4326","EPSG","31170","1.0","-1.0","0.0","8206975.408939","-202123.573287","5.616498","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 31171","passing","EPSG","4326","EPSG","31171","1.0","-1.0","0.0","8209288.426769","-202184.234623","5.616498","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 31251","passing","EPSG","4326","EPSG","31251","1.0","-1.0","0.0","-1043605.9186033024","-5112492.319791396","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 31252","passing","EPSG","4326","EPSG","31252","1.0","-1.0","0.0","-1383615.3035036565","-5113633.337061186","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 31253","passing","EPSG","4326","EPSG","31253","1.0","-1.0","0.0","-1727568.0469047588","-5115118.781644295","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 31252","passing","EPSG","4326","EPSG","31252","1.0","-1.0","0.0","-1383615.404803","-5113633.338694","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 31253","passing","EPSG","4326","EPSG","31253","1.0","-1.0","0.0","-1727568.555041","-5115118.791514","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 31254","passing","EPSG","4326","EPSG","31254","1.0","-1.0","0.0","-1043605.918603","-5112492.319791","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 31255","passing","EPSG","4326","EPSG","31255","1.0","-1.0","0.0","-1383615.303504","-5113633.337061","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 31256","passing","EPSG","4326","EPSG","31256","1.0","-1.0","0.0","-1727568.046905","-5115118.781644","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 31255","passing","EPSG","4326","EPSG","31255","1.0","-1.0","0.0","-1383615.404803","-5113633.338694","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 31256","passing","EPSG","4326","EPSG","31256","1.0","-1.0","0.0","-1727568.555041","-5115118.791514","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 31257","passing","EPSG","4326","EPSG","31257","1.0","-1.0","0.0","-893605.918603","-5112492.319791","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 31258","passing","EPSG","4326","EPSG","31258","1.0","-1.0","0.0","-933615.303504","-5113633.337061","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 31259","passing","EPSG","4326","EPSG","31259","1.0","-1.0","0.0","-977568.046905","-5115118.781644","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 31265","passing","EPSG","4326","EPSG","31265","1.0","-1.0","0.0","3925853.428015","-114414.778916","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 31266","passing","EPSG","4326","EPSG","31266","1.0","-1.0","0.0","4579253.403193","-116100.776951","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 31267","passing","EPSG","4326","EPSG","31267","1.0","-1.0","0.0","5227019.611178","-118168.457339","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 31268","passing","EPSG","4326","EPSG","31268","1.0","-1.0","0.0","5867960.646252","-120650.468976","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 31275","passing","EPSG","4326","EPSG","31275","1.0","-1.0","0.0","3926010.842672","-114403.337438","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 31276","passing","EPSG","4326","EPSG","31276","1.0","-1.0","0.0","4579445.477853","-116089.166873","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 31277","passing","EPSG","4326","EPSG","31277","1.0","-1.0","0.0","5227246.909217","-118156.640493","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 31278","passing","EPSG","4326","EPSG","31278","1.0","-1.0","0.0","5227246.909217","-118156.640493","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 31279","passing","EPSG","4326","EPSG","31279","1.0","-1.0","0.0","5868223.850187","-120638.403929","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 31258","passing","EPSG","4326","EPSG","31258","1.0","-1.0","0.0","-933615.404803","-5113633.338694","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 31259","passing","EPSG","4326","EPSG","31259","1.0","-1.0","0.0","-977568.555041","-5115118.791514","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 31265","passing","EPSG","4326","EPSG","31265","1.0","-1.0","0.0","3925853.171344","-114414.783524","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 31266","passing","EPSG","4326","EPSG","31266","1.0","-1.0","0.0","4579252.283131","-116100.800768","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 31267","passing","EPSG","4326","EPSG","31267","1.0","-1.0","0.0","5227015.589487","-118168.556286","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 31268","passing","EPSG","4326","EPSG","31268","1.0","-1.0","0.0","5867948.181353","-120650.817811","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 31275","passing","EPSG","4326","EPSG","31275","1.0","-1.0","0.0","3926010.586027","-114403.342046","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 31276","passing","EPSG","4326","EPSG","31276","1.0","-1.0","0.0","4579444.357902","-116089.190687","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 31277","passing","EPSG","4326","EPSG","31277","1.0","-1.0","0.0","5227242.887928","-118156.739430","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 31278","passing","EPSG","4326","EPSG","31278","1.0","-1.0","0.0","5227242.887928","-118156.739430","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 31279","passing","EPSG","4326","EPSG","31279","1.0","-1.0","0.0","5868211.386535","-120638.752730","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 31281","passing","EPSG","4326","EPSG","31281","1.0","-1.0","0.0","-1043138.076706","-112552.408971","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 31282","passing","EPSG","4326","EPSG","31282","1.0","-1.0","0.0","-1383142.660325","-113693.585549","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 31283","passing","EPSG","4326","EPSG","31283","1.0","-1.0","0.0","-1727089.168369","-115179.350793","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 31282","passing","EPSG","4326","EPSG","31282","1.0","-1.0","0.0","-1383142.761378","-113693.587179","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 31283","passing","EPSG","4326","EPSG","31283","1.0","-1.0","0.0","-1727089.675462","-115179.360646","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 31284","passing","EPSG","4326","EPSG","31284","1.0","-1.0","0.0","-893605.918603","-112492.319791","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 31285","passing","EPSG","4326","EPSG","31285","1.0","-1.0","0.0","-933615.303504","-113633.337061","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 31286","passing","EPSG","4326","EPSG","31286","1.0","-1.0","0.0","-977568.046905","-115118.781644","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 31285","passing","EPSG","4326","EPSG","31285","1.0","-1.0","0.0","-933615.404803","-113633.338694","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 31286","passing","EPSG","4326","EPSG","31286","1.0","-1.0","0.0","-977568.555041","-115118.791514","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 31287","passing","EPSG","4326","EPSG","31287","1.0","-1.0","0.0","-1473395.091135","-5449764.147785","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 31288","passing","EPSG","4326","EPSG","31288","1.0","-1.0","0.0","-893138.076706","-112552.408971","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 31289","passing","EPSG","4326","EPSG","31289","1.0","-1.0","0.0","-933142.660325","-113693.585549","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 31290","passing","EPSG","4326","EPSG","31290","1.0","-1.0","0.0","-977089.168369","-115179.350793","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 31289","passing","EPSG","4326","EPSG","31289","1.0","-1.0","0.0","-933142.761378","-113693.587179","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 31290","passing","EPSG","4326","EPSG","31290","1.0","-1.0","0.0","-977089.675462","-115179.360646","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 31291","passing","EPSG","4326","EPSG","31291","1.0","-1.0","0.0","-1043138.076706","-112552.408971","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 31292","passing","EPSG","4326","EPSG","31292","1.0","-1.0","0.0","-1383142.660325","-113693.585549","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 31293","passing","EPSG","4326","EPSG","31293","1.0","-1.0","0.0","-1727089.168369","-115179.350793","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 31292","passing","EPSG","4326","EPSG","31292","1.0","-1.0","0.0","-1383142.761378","-113693.587179","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 31293","passing","EPSG","4326","EPSG","31293","1.0","-1.0","0.0","-1727089.675462","-115179.360646","69.974523","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 31294","passing","EPSG","4326","EPSG","31294","1.0","-1.0","0.0","-893605.918603","-112492.319791","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 31295","passing","EPSG","4326","EPSG","31295","1.0","-1.0","0.0","-933615.303504","-113633.337061","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 31296","passing","EPSG","4326","EPSG","31296","1.0","-1.0","0.0","-977568.046905","-115118.781644","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 31295","passing","EPSG","4326","EPSG","31295","1.0","-1.0","0.0","-933615.404803","-113633.338694","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 31296","passing","EPSG","4326","EPSG","31296","1.0","-1.0","0.0","-977568.555041","-115118.791514","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 31297","passing","EPSG","4326","EPSG","31297","1.0","-1.0","0.0","-1473395.091135","-5449764.147785","153.75974","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 31300","passing","EPSG","4326","EPSG","31300","1.0","-1.0","0.0","-379911.660096","-6309484.786666","-138.725677","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 31370","passing","EPSG","4326","EPSG","31370","1.0","-1.0","0.0","-381574.921263","-6309409.37876","-138.725677","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -3478,19 +3478,19 @@ "4326 -> 31462","passing","EPSG","4326","EPSG","31462","1.0","-1.0","0.0","1942852.593323","-111415.501399","105.205271","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 31463","passing","EPSG","4326","EPSG","31463","1.0","-1.0","0.0","2606770.853728","-112086.713675","105.205271","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 31464","passing","EPSG","4326","EPSG","31464","1.0","-1.0","0.0","3268189.653934","-113079.999334","105.205271","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 31465","passing","EPSG","4326","EPSG","31465","1.0","-1.0","0.0","3926120.495868","-114409.659607","105.205271","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 31465","passing","EPSG","4326","EPSG","31465","1.0","-1.0","0.0","3926120.239514","-114409.664209","105.205271","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 31466","passing","EPSG","4326","EPSG","31466","1.0","-1.0","0.0","1942852.593323","-111415.501399","105.205271","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 31467","passing","EPSG","4326","EPSG","31467","1.0","-1.0","0.0","2606770.853728","-112086.713675","105.205271","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 31468","passing","EPSG","4326","EPSG","31468","1.0","-1.0","0.0","3268189.653934","-113079.999334","105.205271","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 31469","passing","EPSG","4326","EPSG","31469","1.0","-1.0","0.0","3926120.495868","-114409.659607","105.205271","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 31469","passing","EPSG","4326","EPSG","31469","1.0","-1.0","0.0","3926120.239514","-114409.664209","105.205271","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 31528","passing","EPSG","4326","EPSG","31528","1.0","-1.0","0.0","2303642.507004","-115006.885056","-93.77219","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 31529","passing","EPSG","4326","EPSG","31529","1.0","-1.0","0.0","1618065.607747","-112238.577068","-93.77219","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 31600","passing","EPSG","4326","EPSG","31600","1.0","-1.0","0.0","-2745531.568785","-4709869.647938","-357.792039","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 31700","passing","EPSG","4326","EPSG","31700","1.0","-1.0","0.0","-2695101.892924","-4732424.799302","-135.223088","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 31838","passing","EPSG","4326","EPSG","31838","1.0","-1.0","0.0","-4967177.680681","-154129.945017","3.347359","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 31839","passing","EPSG","4326","EPSG","31839","1.0","-1.0","0.0","-5950988.00961","-172764.44209","3.347359","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 31900","passing","EPSG","4326","EPSG","31900","1.0","-1.0","0.0","-5438752.760447","-162319.878905","20.638379","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 31901","passing","EPSG","4326","EPSG","31901","1.0","-1.0","0.0","-5441129.212132","-162384.832838","20.638379","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 31900","passing","EPSG","4326","EPSG","31900","1.0","-1.0","0.0","-5445096.688007","-162685.271571","20.638379","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 31901","passing","EPSG","4326","EPSG","31901","1.0","-1.0","0.0","-5447475.678278","-162750.371720","20.638379","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 31965","passing","EPSG","4326","EPSG","31965","1.0","-1.0","0.0","9380117.510219","-1.9757704843637E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 31966","passing","EPSG","4326","EPSG","31966","1.0","-1.0","0.0","1.0990756729525E7","-1.9694702609941E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 31967","passing","EPSG","4326","EPSG","31967","1.0","-1.0","0.0","1.3117319676437E7","-1.9577493844715E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -3527,11 +3527,11 @@ "4326 -> 32003","passing","EPSG","4326","EPSG","32003","1.0","-1.0","0.0","4.05592619195E7","1.3599275416374E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 32005","passing","EPSG","4326","EPSG","32005","1.0","-1.0","0.0","3.9301841645596E7","8312086.886566","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 32006","passing","EPSG","4326","EPSG","32006","1.0","-1.0","0.0","3.9171486438957E7","7990943.175222","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32010","passing","EPSG","4326","EPSG","32010","1.0","-1.0","0.0","3.8434788211679E7","-1.6514152187865E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32011","passing","EPSG","4326","EPSG","32011","1.0","-1.0","0.0","4.3042703636285E7","-1.5306645081338E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32015","passing","EPSG","4326","EPSG","32015","1.0","-1.0","0.0","4.1182716584176E7","-1.5716118352498E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32016","passing","EPSG","4326","EPSG","32016","1.0","-1.0","0.0","4.368382263031E7","-1.582499070749E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32017","passing","EPSG","4326","EPSG","32017","1.0","-1.0","0.0","4.6064008076621E7","-1.5934547631051E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 32010","passing","EPSG","4326","EPSG","32010","1.0","-1.0","0.0","40153750.520000","-16704357.620000","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed for the exact Transverse Mercator: the datum uses NAD27 grids so PROJ cannot be invoked directly, but the shift matches PROJ 9.6.0 exact-minus-approx exactly" +"4326 -> 32011","passing","EPSG","4326","EPSG","32011","1.0","-1.0","0.0","45852367.930000","-15655210.860000","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed for the exact Transverse Mercator: the datum uses NAD27 grids so PROJ cannot be invoked directly, but the shift matches PROJ 9.6.0 exact-minus-approx exactly" +"4326 -> 32015","passing","EPSG","4326","EPSG","32015","1.0","-1.0","0.0","43841003.630000","-16041279.850000","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed for the exact Transverse Mercator: the datum uses NAD27 grids so PROJ cannot be invoked directly, but the shift matches PROJ 9.6.0 exact-minus-approx exactly" +"4326 -> 32016","passing","EPSG","4326","EPSG","32016","1.0","-1.0","0.0","47570030.770000","-16353334.950000","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed for the exact Transverse Mercator: the datum uses NAD27 grids so PROJ cannot be invoked directly, but the shift matches PROJ 9.6.0 exact-minus-approx exactly" +"4326 -> 32017","passing","EPSG","4326","EPSG","32017","1.0","-1.0","0.0","51606150.530000","-16788796.230000","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed for the exact Transverse Mercator: the datum uses NAD27 grids so PROJ cannot be invoked directly, but the shift matches PROJ 9.6.0 exact-minus-approx exactly" "4326 -> 32018","passing","EPSG","4326","EPSG","32018","1.0","-1.0","0.0","3.1797122316274E7","-2356035.177722","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 32019","passing","EPSG","4326","EPSG","32019","1.0","-1.0","0.0","3.3505776380728E7","-57172.539554","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 32020","passing","EPSG","4326","EPSG","32020","1.0","-1.0","0.0","3.9560425902386E7","9522387.143613","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" @@ -3544,7 +3544,7 @@ "4326 -> 32027","passing","EPSG","4326","EPSG","32027","1.0","-1.0","0.0","4.1664231993295E7","1.8105558423401E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 32028","passing","EPSG","4326","EPSG","32028","1.0","-1.0","0.0","3.3997686721351E7","-701828.929522","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 32029","passing","EPSG","4326","EPSG","32029","1.0","-1.0","0.0","3.3838962777475E7","-750773.981896","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32030","passing","EPSG","4326","EPSG","32030","1.0","-1.0","0.0","3.8271354224404E7","-1.5991872357693E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 32030","passing","EPSG","4326","EPSG","32030","1.0","-1.0","0.0","39944656.570000","-16175977.870000","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed for the exact Transverse Mercator: the datum uses NAD27 grids so PROJ cannot be invoked directly, but the shift matches PROJ 9.6.0 exact-minus-approx exactly" "4326 -> 32031","passing","EPSG","4326","EPSG","32031","1.0","-1.0","0.0","3.4007753291629E7","528462.858964","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 32033","passing","EPSG","4326","EPSG","32033","1.0","-1.0","0.0","3.3853346075889E7","444844.523681","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 32034","passing","EPSG","4326","EPSG","32034","1.0","-1.0","0.0","3.9383115490709E7","8845099.507918","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" @@ -3558,7 +3558,7 @@ "4326 -> 32042","passing","EPSG","4326","EPSG","32042","1.0","-1.0","0.0","4.1076337581052E7","1.3155039808159E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 32043","passing","EPSG","4326","EPSG","32043","1.0","-1.0","0.0","4.118765096581E7","1.2980476708732E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 32044","passing","EPSG","4326","EPSG","32044","1.0","-1.0","0.0","4.1355532235311E7","1.2268337247844E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32045","passing","EPSG","4326","EPSG","32045","1.0","-1.0","0.0","3.9269507555851E7","-1.6547570870107E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 32045","passing","EPSG","4326","EPSG","32045","1.0","-1.0","0.0","41237242.780000","-16771772.400000","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed for the exact Transverse Mercator: the datum uses NAD27 grids so PROJ cannot be invoked directly, but the shift matches PROJ 9.6.0 exact-minus-approx exactly" "4326 -> 32046","passing","EPSG","4326","EPSG","32046","1.0","-1.0","0.0","3.3804771693605E7","-474916.185496","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 32047","passing","EPSG","4326","EPSG","32047","1.0","-1.0","0.0","3.3632730021145E7","-421458.137597","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 32048","passing","EPSG","4326","EPSG","32048","1.0","-1.0","0.0","4.0782731708793E7","1.9684712943669E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" @@ -3570,25 +3570,25 @@ "4326 -> 32054","passing","EPSG","4326","EPSG","32054","1.0","-1.0","0.0","3.7383874068951E7","4273168.561563","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 32061","passing","EPSG","4326","EPSG","32061","1.0","-1.0","0.0","1.0783926462388E7","704636.324128","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 32062","passing","EPSG","4326","EPSG","32062","1.0","-1.0","0.0","1.0763376809751E7","678709.100228","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32066","passing","EPSG","4326","EPSG","32066","1.0","-1.0","0.0","5.9133441231533E7","-2026750.559125","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32067","passing","EPSG","4326","EPSG","32067","1.0","-1.0","0.0","5.0279368820954E7","-1553070.176234","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32076","passing","EPSG","4326","EPSG","32076","1.0","-1.0","0.0","5.9133441231533E7","-2026750.559125","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32077","passing","EPSG","4326","EPSG","32077","1.0","-1.0","0.0","5.0279368820954E7","-1553070.176234","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32081","passing","EPSG","4326","EPSG","32081","1.0","-1.0","0.0","7461652.184415","-187670.947573","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32082","passing","EPSG","4326","EPSG","32082","1.0","-1.0","0.0","8038945.482311","-201676.642981","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32083","passing","EPSG","4326","EPSG","32083","1.0","-1.0","0.0","8550936.843213","-215181.951772","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32084","passing","EPSG","4326","EPSG","32084","1.0","-1.0","0.0","9207456.599861","-233986.561585","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32085","passing","EPSG","4326","EPSG","32085","1.0","-1.0","0.0","9916156.192369","-256140.621215","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32086","passing","EPSG","4326","EPSG","32086","1.0","-1.0","0.0","1.0684484765137E7","-282289.64286","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 32066","error","EPSG","4326","EPSG","32066","1.0","-1.0","0.0","5.9133441231533E7","-2026750.559125","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 32067","error","EPSG","4326","EPSG","32067","1.0","-1.0","0.0","5.0279368820954E7","-1553070.176234","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 32076","error","EPSG","4326","EPSG","32076","1.0","-1.0","0.0","5.9133441231533E7","-2026750.559125","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 32077","error","EPSG","4326","EPSG","32077","1.0","-1.0","0.0","5.0279368820954E7","-1553070.176234","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 32081","passing","EPSG","4326","EPSG","32081","1.0","-1.0","0.0","7485348.460000","-189283.139900","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed for the exact Transverse Mercator: the datum uses NAD27 grids so PROJ cannot be invoked directly, but the shift matches PROJ 9.6.0 exact-minus-approx exactly" +"4326 -> 32082","passing","EPSG","4326","EPSG","32082","1.0","-1.0","0.0","8079107.588000","-204607.811100","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed for the exact Transverse Mercator: the datum uses NAD27 grids so PROJ cannot be invoked directly, but the shift matches PROJ 9.6.0 exact-minus-approx exactly" +"4326 -> 32083","passing","EPSG","4326","EPSG","32083","1.0","-1.0","0.0","8612478.855000","-219946.308900","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed for the exact Transverse Mercator: the datum uses NAD27 grids so PROJ cannot be invoked directly, but the shift matches PROJ 9.6.0 exact-minus-approx exactly" +"4326 -> 32084","passing","EPSG","4326","EPSG","32084","1.0","-1.0","0.0","9308885.584000","-242427.761200","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed for the exact Transverse Mercator: the datum uses NAD27 grids so PROJ cannot be invoked directly, but the shift matches PROJ 9.6.0 exact-minus-approx exactly" +"4326 -> 32085","passing","EPSG","4326","EPSG","32085","1.0","-1.0","0.0","10081608.540000","-270989.749400","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed for the exact Transverse Mercator: the datum uses NAD27 grids so PROJ cannot be invoked directly, but the shift matches PROJ 9.6.0 exact-minus-approx exactly" +"4326 -> 32086","passing","EPSG","4326","EPSG","32086","1.0","-1.0","0.0","10952662.150000","-308386.118400","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed for the exact Transverse Mercator: the datum uses NAD27 grids so PROJ cannot be invoked directly, but the shift matches PROJ 9.6.0 exact-minus-approx exactly" "4326 -> 32098","passing","EPSG","4326","EPSG","32098","1.0","-1.0","0.0","9549969.259541","-761453.533047","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 32099","passing","EPSG","4326","EPSG","32099","1.0","-1.0","0.0","3.651162252957E7","3139884.941465","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 32100","passing","EPSG","4326","EPSG","32100","1.0","-1.0","0.0","1.2324918268659E7","4366651.863837","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 32104","passing","EPSG","4326","EPSG","32104","1.0","-1.0","0.0","1.1859582682383E7","2563845.950141","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32110","passing","EPSG","4326","EPSG","32110","1.0","-1.0","0.0","1.1862074088415E7","-5033721.498112","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32111","passing","EPSG","4326","EPSG","32111","1.0","-1.0","0.0","1.2603413402636E7","-4662963.007428","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32115","passing","EPSG","4326","EPSG","32115","1.0","-1.0","0.0","1.2603413402636E7","-4662963.007428","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32116","passing","EPSG","4326","EPSG","32116","1.0","-1.0","0.0","1.3411859131067E7","-4823650.932015","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32117","passing","EPSG","4326","EPSG","32117","1.0","-1.0","0.0","1.4237282921893E7","-4857039.255734","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 32110","passing","EPSG","4326","EPSG","32110","1.0","-1.0","0.0","12385210.049457","-5091569.861759","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 32111","passing","EPSG","4326","EPSG","32111","1.0","-1.0","0.0","13434933.821414","-4765298.621421","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 32115","passing","EPSG","4326","EPSG","32115","1.0","-1.0","0.0","13434933.821414","-4765298.621421","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 32116","passing","EPSG","4326","EPSG","32116","1.0","-1.0","0.0","14594179.389600","-4984192.934623","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 32117","passing","EPSG","4326","EPSG","32117","1.0","-1.0","0.0","15922864.775165","-5116346.421875","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 32118","passing","EPSG","4326","EPSG","32118","1.0","-1.0","0.0","9687036.766689","-681351.175466","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 32119","passing","EPSG","4326","EPSG","32119","1.0","-1.0","0.0","1.0212602585283E7","-17652.610423","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 32120","passing","EPSG","4326","EPSG","32120","1.0","-1.0","0.0","1.2048562892627E7","2902217.376716","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -3601,7 +3601,7 @@ "4326 -> 32127","passing","EPSG","4326","EPSG","32127","1.0","-1.0","0.0","1.3589771611216E7","5518383.696956","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 32128","passing","EPSG","4326","EPSG","32128","1.0","-1.0","0.0","1.0352975312048E7","-214159.88901","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 32129","passing","EPSG","4326","EPSG","32129","1.0","-1.0","0.0","1.0308283550952E7","-220512.975756","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32130","passing","EPSG","4326","EPSG","32130","1.0","-1.0","0.0","1.1612262480686E7","-4874528.079031","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 32130","passing","EPSG","4326","EPSG","32130","1.0","-1.0","0.0","12121505.329748","-4930522.093156","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 32133","passing","EPSG","4326","EPSG","32133","1.0","-1.0","0.0","1.0339890150895E7","211156.727684","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 32134","passing","EPSG","4326","EPSG","32134","1.0","-1.0","0.0","1.1994495041044E7","2695771.443861","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 32135","passing","EPSG","4326","EPSG","32135","1.0","-1.0","0.0","1.1997076072218E7","2676611.855038","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -3614,7 +3614,7 @@ "4326 -> 32142","passing","EPSG","4326","EPSG","32142","1.0","-1.0","0.0","1.2410564577759E7","5009447.87745","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 32143","passing","EPSG","4326","EPSG","32143","1.0","-1.0","0.0","1.2444482006656E7","5956239.983326","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 32144","passing","EPSG","4326","EPSG","32144","1.0","-1.0","0.0","1.2495636574632E7","6739176.857568","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32145","passing","EPSG","4326","EPSG","32145","1.0","-1.0","0.0","1.2316477845608E7","-5043906.115058","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 32145","passing","EPSG","4326","EPSG","32145","1.0","-1.0","0.0","12915305.224043","-5112088.044691","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 32146","passing","EPSG","4326","EPSG","32146","1.0","-1.0","0.0","1.319415649693E7","1855008.196457","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 32147","passing","EPSG","4326","EPSG","32147","1.0","-1.0","0.0","1.3141710050315E7","871305.38436","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 32148","passing","EPSG","4326","EPSG","32148","1.0","-1.0","0.0","1.2321126696733E7","5999733.6578","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -3625,23 +3625,23 @@ "4326 -> 32153","passing","EPSG","4326","EPSG","32153","1.0","-1.0","0.0","1.1431777681828E7","1297424.634259","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 32154","passing","EPSG","4326","EPSG","32154","1.0","-1.0","0.0","1.1385107910133E7","1302231.579991","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 32161","passing","EPSG","4326","EPSG","32161","1.0","-1.0","0.0","7952042.830285","-479128.830527","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32166","passing","EPSG","4326","EPSG","32166","1.0","-1.0","0.0","5.913029814767E7","-2026562.8464","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32167","passing","EPSG","4326","EPSG","32167","1.0","-1.0","0.0","5.0276969639849E7","-1552948.471705","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32180","passing","EPSG","4326","EPSG","32180","1.0","-1.0","0.0","7939833.583325","-199185.555886","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32181","passing","EPSG","4326","EPSG","32181","1.0","-1.0","0.0","7461465.728259","-187672.479556","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32182","passing","EPSG","4326","EPSG","32182","1.0","-1.0","0.0","8038728.049406","-201676.577898","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32183","passing","EPSG","4326","EPSG","32183","1.0","-1.0","0.0","8550689.97567","-215180.26638","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32184","passing","EPSG","4326","EPSG","32184","1.0","-1.0","0.0","9207169.520513","-233982.521348","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32185","passing","EPSG","4326","EPSG","32185","1.0","-1.0","0.0","9915822.915933","-256133.699684","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32186","passing","EPSG","4326","EPSG","32186","1.0","-1.0","0.0","1.0684098555407E7","-282279.21894","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32187","passing","EPSG","4326","EPSG","32187","1.0","-1.0","0.0","1.1520450559131E7","-313185.711591","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32188","passing","EPSG","4326","EPSG","32188","1.0","-1.0","0.0","1.2434455937819E7","-349760.419421","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32189","passing","EPSG","4326","EPSG","32189","1.0","-1.0","0.0","1.3436941307237E7","-393073.000181","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32190","passing","EPSG","4326","EPSG","32190","1.0","-1.0","0.0","1.4540119571761E7","-444379.949362","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32191","passing","EPSG","4326","EPSG","32191","1.0","-1.0","0.0","1.5757736995238E7","-505151.848614","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32192","passing","EPSG","4326","EPSG","32192","1.0","-1.0","0.0","1.5133700109056E7","-473481.699571","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32193","passing","EPSG","4326","EPSG","32193","1.0","-1.0","0.0","1.6414214001085E7","-539612.639806","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32194","passing","EPSG","4326","EPSG","32194","1.0","-1.0","0.0","1.7833009909167E7","-617882.974409","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 32166","error","EPSG","4326","EPSG","32166","1.0","-1.0","0.0","5.913029814767E7","-2026562.8464","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 32167","error","EPSG","4326","EPSG","32167","1.0","-1.0","0.0","5.0276969639849E7","-1552948.471705","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 32180","passing","EPSG","4326","EPSG","32180","1.0","-1.0","0.0","7976601.826127","-201836.910943","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 32181","passing","EPSG","4326","EPSG","32181","1.0","-1.0","0.0","7485122.173446","-189281.454101","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 32182","passing","EPSG","4326","EPSG","32182","1.0","-1.0","0.0","8078826.347523","-204602.141116","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 32183","passing","EPSG","4326","EPSG","32183","1.0","-1.0","0.0","8612137.856451","-219935.732563","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 32184","passing","EPSG","4326","EPSG","32184","1.0","-1.0","0.0","9308448.441537","-242408.173378","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 32185","passing","EPSG","4326","EPSG","32185","1.0","-1.0","0.0","10081034.668108","-270955.239323","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 32186","passing","EPSG","4326","EPSG","32186","1.0","-1.0","0.0","10951884.807940","-308325.366944","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 32187","passing","EPSG","4326","EPSG","32187","1.0","-1.0","0.0","11953832.248001","-359297.148725","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 32188","passing","EPSG","4326","EPSG","32188","1.0","-1.0","0.0","13139479.444974","-433089.111077","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 32189","passing","EPSG","4326","EPSG","32189","1.0","-1.0","0.0","14602368.100993","-550624.402643","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 32190","passing","EPSG","4326","EPSG","32190","1.0","-1.0","0.0","16540704.466247","-776353.629276","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" +"4326 -> 32191","error","EPSG","4326","EPSG","32191","1.0","-1.0","0.0","1.5757736995238E7","-505151.848614","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 32192","error","EPSG","4326","EPSG","32192","1.0","-1.0","0.0","1.5133700109056E7","-473481.699571","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 32193","error","EPSG","4326","EPSG","32193","1.0","-1.0","0.0","1.6414214001085E7","-539612.639806","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 32194","error","EPSG","4326","EPSG","32194","1.0","-1.0","0.0","1.7833009909167E7","-617882.974409","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 32198","passing","EPSG","4326","EPSG","32198","1.0","-1.0","0.0","9550099.581142","-761710.176539","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 32199","passing","EPSG","4326","EPSG","32199","1.0","-1.0","0.0","1.1519135812446E7","975310.838643","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 32201","passing","EPSG","4326","EPSG","32201","1.0","-1.0","0.0","722578.795832","-1.988532147971E7","0.635127","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -3925,10 +3925,10 @@ "4326 -> 32659","passing","EPSG","4326","EPSG","32659","1.0","-1.0","0.0","-618308.573583","-1.9883683216779E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 32660","passing","EPSG","4326","EPSG","32660","1.0","-1.0","0.0","54603.316023","-1.9885128053496E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 32661","passing","EPSG","4326","EPSG","32661","1.0","-1.0","0.0","2224408.737826","-1.0856367979638E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32662","passing","EPSG","4326","EPSG","32662","1.0","-1.0","0.0","111319.490793","-111319.490793","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32663","passing","EPSG","4326","EPSG","32663","1.0","-1.0","0.0","111319.490793","-111319.490793","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32666","passing","EPSG","4326","EPSG","32666","1.0","-1.0","0.0","5.913029814656E7","-2026562.846327","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32667","passing","EPSG","4326","EPSG","32667","1.0","-1.0","0.0","5.0276969639024E7","-1552948.471659","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" +"4326 -> 32662","passing","EPSG","4326","EPSG","32662","1.0","-1.0","0.0","111319.490800","-110574.388600","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed for the ellipsoidal Equidistant Cylindrical (EPSG:1028), the method EPSG defines for this CRS and that PROJ implements from 9.8.0; verified against PROJ's own test/gie/builtins.gie expectations" +"4326 -> 32663","passing","EPSG","4326","EPSG","32663","1.0","-1.0","0.0","111319.490800","-110574.388600","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed for the ellipsoidal Equidistant Cylindrical (EPSG:1028), the method EPSG defines for this CRS and that PROJ implements from 9.8.0; verified against PROJ's own test/gie/builtins.gie expectations" +"4326 -> 32666","error","EPSG","4326","EPSG","32666","1.0","-1.0","0.0","5.913029814656E7","-2026562.846327","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 32667","error","EPSG","4326","EPSG","32667","1.0","-1.0","0.0","5.0276969639024E7","-1552948.471659","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" "4326 -> 32701","passing","EPSG","4326","EPSG","32701","1.0","-1.0","0.0","722561.736479","-9885331.913518","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 32702","passing","EPSG","4326","EPSG","32702","1.0","-1.0","0.0","1392989.214538","-9884306.279451","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 32703","passing","EPSG","4326","EPSG","32703","1.0","-1.0","0.0","2073447.882705","-9881992.849296","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -3986,7 +3986,7 @@ "4326 -> 32759","passing","EPSG","4326","EPSG","32759","1.0","-1.0","0.0","-618308.573583","-9883683.216779","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 32760","passing","EPSG","4326","EPSG","32760","1.0","-1.0","0.0","54603.316023","-9885128.053496","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 32761","passing","EPSG","4326","EPSG","32761","1.0","-1.0","0.0","2216760.795442","1.4418217653909E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 32766","passing","EPSG","4326","EPSG","32766","1.0","-1.0","0.0","-3663119.27318","9864869.22619","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 32766","passing","EPSG","4326","EPSG","32766","1.0","-1.0","0.0","-3663561.088206","9864850.687614","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3822","passing","EPSG","4326","EPSG","3822","1.0","-1.0","0.0","6376200.806232","111296.999068","-110568.774821","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3887","passing","EPSG","4326","EPSG","3887","1.0","-1.0","0.0","6376200.806232","111296.999068","-110568.774821","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" "4326 -> 4000","passing","EPSG","4326","EPSG","4000","1.0","-1.0","0.0","6376200.806232","111296.999068","-110568.774821","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" From 3b39617aba9837ec78913fb32d5105cbbc9ecab4 Mon Sep 17 00:00:00 2001 From: Grigory Pomadchin Date: Mon, 3 Aug 2026 03:23:06 -0400 Subject: [PATCH 2/2] proj4-epsg failing tests correction / regeneration against PROJ.9 --- CHANGELOG.md | 1 + .../proj4j/parser/Proj4Keyword.java | 4 + .../proj4j/parser/Proj4Parser.java | 16 + .../locationtech/proj4j/proj/Projection.java | 41 ++ core/src/test/resources/proj4-epsg.csv | 568 +++++++++++++----- 5 files changed, 486 insertions(+), 144 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 310fb75..dea2b2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -40,6 +40,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Loximuthal: a missing `abs()` in the near-parallel test sent every point south of `+lat_1` down the wrong branch - Robinson: latitudes landing exactly on a 5-degree table node selected the node below through `floor()` rounding - `+units=ch`, `+units=fath`, `+units=link` and `+units=us-ch` were silently treated as metres because those units, though defined, were missing from the lookup table; the Indian units (`ind-yd`, `ind-ft`, `ind-ch`) were added +- `+vunits` and `+vto_meter` are accepted instead of raising `UnsupportedParameterException`. The EPSG resource ships 158 compound (horizontal + vertical) definitions carrying `+vunits`, so 144 of them - `OSGB36 / British National Grid + ODN height`, `Amersfoort / RD New + NAP height`, the `ETRS89 / NTM zone N`, `ETRS89 / UTM zone N` and `NAD83(CSRS) / UTM zone N` families, `SWEREF99 xx + RH2000`, `Tokyo + JSLD`, and others - could not be constructed at all. The vertical unit is recorded but **not** applied: proj4j carries the vertical ordinate in metres, as it did before. The horizontal transform is unaffected either way, which is all PROJ does with it for the 2D part ### Added - `ProjAlignmentTest`, pinning 67 cases against values generated from raw PROJ pipelines and cross-checked on PROJ 9.5.1 and 9.6.0 diff --git a/core/src/main/java/org/locationtech/proj4j/parser/Proj4Keyword.java b/core/src/main/java/org/locationtech/proj4j/parser/Proj4Keyword.java index 1e89261..39d4f30 100755 --- a/core/src/main/java/org/locationtech/proj4j/parser/Proj4Keyword.java +++ b/core/src/main/java/org/locationtech/proj4j/parser/Proj4Keyword.java @@ -59,6 +59,8 @@ public class Proj4Keyword { public static final String south = "south"; public static final String to_meter = "to_meter"; + public static final String vunits = "vunits"; + public static final String vto_meter = "vto_meter"; public static final String towgs84 = "towgs84"; public static final String units = "units"; public static final String x_0 = "x_0"; @@ -116,6 +118,8 @@ public static synchronized Set supportedParameters() { supportedParams.add(south); supportedParams.add(towgs84); supportedParams.add(to_meter); + supportedParams.add(vunits); // vertical unit of a compound CRS; parsed, not applied + supportedParams.add(vto_meter); // vertical unit of a compound CRS; parsed, not applied supportedParams.add(units); supportedParams.add(nadgrids); supportedParams.add(pm); diff --git a/core/src/main/java/org/locationtech/proj4j/parser/Proj4Parser.java b/core/src/main/java/org/locationtech/proj4j/parser/Proj4Parser.java index d811e30..3fbb511 100755 --- a/core/src/main/java/org/locationtech/proj4j/parser/Proj4Parser.java +++ b/core/src/main/java/org/locationtech/proj4j/parser/Proj4Parser.java @@ -148,6 +148,22 @@ private Projection parseProjection(Map params, Ellipsoid ellipsoid) { s = (String) params.get(Proj4Keyword.to_meter); if (s != null) projection.setFromMetres(1.0 / Double.parseDouble(s)); + + /* + * Vertical unit of a compound (horizontal + vertical) CRS. Recorded so those definitions + * parse - the EPSG resource ships 158 of them - but not applied: proj4j keeps the vertical + * ordinate in metres. The horizontal transform PROJ performs is the same either way. + */ + s = (String) params.get(Proj4Keyword.vunits); + if (s != null) { + Unit vunit = Units.findUnits(s); + if (vunit != null) + projection.setVerticalUnit(vunit); + } + + s = (String) params.get(Proj4Keyword.vto_meter); + if (s != null) + projection.setVerticalFromMetres(1.0 / Double.parseDouble(s)); s = (String) params.get(Proj4Keyword.h); if (s != null) { diff --git a/core/src/main/java/org/locationtech/proj4j/proj/Projection.java b/core/src/main/java/org/locationtech/proj4j/proj/Projection.java index 501d445..b7f7f5a 100644 --- a/core/src/main/java/org/locationtech/proj4j/proj/Projection.java +++ b/core/src/main/java/org/locationtech/proj4j/proj/Projection.java @@ -187,6 +187,23 @@ public abstract class Projection implements Cloneable, java.io.Serializable { */ protected Unit unit = null; + /** + * Vertical unit of this projection ({@code +vunits}), null when not given. + * + *

It is recorded so that the compound (horizontal + vertical) definitions shipped in the + * EPSG resource can be parsed, but it is not applied: proj4j carries the vertical + * ordinate in metres throughout, so a caller reading {@code z} gets metres regardless of this + * value. PROJ turns it into {@code vto_meter} and applies it to the vertical ordinate only + * (src/init.cpp, src/inv.cpp); the horizontal transform is unaffected either way. + */ + protected Unit verticalUnit = null; + + /** + * Conversion factor from metres to the vertical unit, the vertical counterpart of + * {@link #fromMetres}. Recorded but not applied - see {@link #verticalUnit}. + */ + protected double verticalFromMetres = 1; + /** * PrimeMeridian defining an offset from the Greenwich (the prime meridian used in WGS84) */ @@ -749,6 +766,30 @@ public double getEquatorRadius() { /** * Set the conversion factor from metres to projected units. This is set to 1 by default. */ + /** + * Sets the vertical unit, {@code +vunits}. Recorded, not applied - see {@link #verticalUnit}. + */ + public void setVerticalUnit( Unit verticalUnit ) { + this.verticalUnit = verticalUnit; + if ( verticalUnit != null ) + this.verticalFromMetres = 1.0 / verticalUnit.value; + } + + public Unit getVerticalUnit() { + return verticalUnit; + } + + /** + * Sets the vertical conversion factor, {@code +vto_meter}. Recorded, not applied. + */ + public void setVerticalFromMetres( double verticalFromMetres ) { + this.verticalFromMetres = verticalFromMetres; + } + + public double getVerticalFromMetres() { + return verticalFromMetres; + } + public void setFromMetres( double fromMetres ) { this.fromMetres = fromMetres; } diff --git a/core/src/test/resources/proj4-epsg.csv b/core/src/test/resources/proj4-epsg.csv index 63b5a8f..56ecd80 100644 --- a/core/src/test/resources/proj4-epsg.csv +++ b/core/src/test/resources/proj4-epsg.csv @@ -516,9 +516,13 @@ "4326 -> 2018","passing","EPSG","4326","EPSG","2018","1.0","-1.0","0.0","14605117.911055","-551134.090321","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2019","passing","EPSG","4326","EPSG","2019","1.0","-1.0","0.0","16546197.819721","-778036.560885","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2020","error","EPSG","4326","EPSG","2020","1.0","-1.0","0.0","1.5758520219679E7","-505193.395181","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2020 (area of use)","passing","EPSG","4326","EPSG","2020","-82.300000","43.835000","0.0","320884.482325","4854806.936800","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2021","error","EPSG","4326","EPSG","2021","1.0","-1.0","0.0","1.5134431600389E7","-473518.806319","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2021 (area of use)","passing","EPSG","4326","EPSG","2021","-81.000000","50.605000","0.0","304800.000000","5607364.500300","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2022","error","EPSG","4326","EPSG","2022","1.0","-1.0","0.0","1.6415052162846E7","-539659.002909","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2022 (area of use)","passing","EPSG","4326","EPSG","2022","-84.000000","50.795000","0.0","304800.000000","5628498.531942","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2023","error","EPSG","4326","EPSG","2023","1.0","-1.0","0.0","1.7833968210564E7","-617940.206533","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2023 (area of use)","passing","EPSG","4326","EPSG","2023","-87.000000","51.935000","0.0","304800.000000","5755317.386062","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2027","passing","EPSG","4326","EPSG","2027","1.0","-1.0","0.0","8929226.258748","-6009717.418205","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2030","passing","EPSG","4326","EPSG","2030","1.0","-1.0","0.0","1.4020924307249E7","-484340.840329","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2032","passing","EPSG","4326","EPSG","2032","1.0","-1.0","0.0","1.4020924307249E7","-484340.840329","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -677,12 +681,18 @@ "4326 -> 2234","passing","EPSG","4326","EPSG","2234","1.0","-1.0","0.0","3.152765621337E7","-2216629.556017","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 2235","passing","EPSG","4326","EPSG","2235","1.0","-1.0","0.0","45701112.989039","-15447210.408475","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2236","error","EPSG","4326","EPSG","2236","1.0","-1.0","0.0","4.9309319950207E7","-1.0385647534347E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2236 (area of use)","passing","EPSG","4326","EPSG","2236","-81.150000","27.620000","0.0","607594.413748","1194584.937402","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2237","error","EPSG","4326","EPSG","2237","1.0","-1.0","0.0","5.0662786479725E7","-1.0453939851278E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2237 (area of use)","passing","EPSG","4326","EPSG","2237","-82.235000","27.935000","0.0","580288.962843","1309145.671798","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2238","passing","EPSG","4326","EPSG","2238","1.0","-1.0","0.0","3.461492471905E7","1403484.069356","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 2239","error","EPSG","4326","EPSG","2239","1.0","-1.0","0.0","5.0890745624323E7","-1.2525113880594E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2239 (area of use)","passing","EPSG","4326","EPSG","2239","-82.120000","32.520000","0.0","670550.407957","916584.681924","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2240","error","EPSG","4326","EPSG","2240","1.0","-1.0","0.0","5.5395061228234E7","-1.2675189538692E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2240 (area of use)","passing","EPSG","4326","EPSG","2240","-84.300000","32.815000","0.0","2255621.722229","1023929.335760","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2244","error","EPSG","4326","EPSG","2244","1.0","-1.0","0.0","5.5710398969693E7","-1.4711272806654E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2244 (area of use)","passing","EPSG","4326","EPSG","2244","-85.685000","39.860000","0.0","322936.708506","1677616.901806","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2245","error","EPSG","4326","EPSG","2245","1.0","-1.0","0.0","6.0600068996002E7","-1.4838521799231E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2245 (area of use)","passing","EPSG","4326","EPSG","2245","-87.170000","39.770000","0.0","2928388.748326","1644844.551254","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2246","passing","EPSG","4326","EPSG","2246","1.0","-1.0","0.0","3.5059203444504E7","1569081.232317","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 2247","passing","EPSG","4326","EPSG","2247","1.0","-1.0","0.0","3.5342614219278E7","3714598.128125","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 2248","passing","EPSG","4326","EPSG","2248","1.0","-1.0","0.0","3.2708684370125E7","-906152.346323","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" @@ -692,6 +702,7 @@ "4326 -> 2252","passing","EPSG","4326","EPSG","2252","1.0","-1.0","0.0","5.3954791524009E7","2049141.787235","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 2253","passing","EPSG","4326","EPSG","2253","1.0","-1.0","0.0","4.7115923552287E7","1905110.937509","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 2254","error","EPSG","4326","EPSG","2254","1.0","-1.0","0.0","6.1587808741621E7","-1.2917153900627E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2254 (area of use)","passing","EPSG","4326","EPSG","2254","-89.030000","32.510000","0.0","923623.014527","1094873.376241","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2256","passing","EPSG","4326","EPSG","2256","1.0","-1.0","0.0","4.0436083558584E7","1.432628564251E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 2260","passing","EPSG","4326","EPSG","2260","1.0","-1.0","0.0","44077778.712423","-15634150.560445","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2261","passing","EPSG","4326","EPSG","2261","1.0","-1.0","0.0","47881070.213714","-16352306.319676","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" @@ -753,14 +764,18 @@ "4326 -> 2350","passing","EPSG","4326","EPSG","2350","1.0","-1.0","0.0","12470328.960766","-526375.856290","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2351","passing","EPSG","4326","EPSG","2351","1.0","-1.0","0.0","11634032.245382","-724567.762394","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2352","error","EPSG","4326","EPSG","2352","1.0","-1.0","0.0","1.3257047951431E7","-494346.051652","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2352 (area of use)","passing","EPSG","4326","EPSG","2352","84.000000","37.745000","0.0","28500000.000000","4179196.481191","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2353","passing","EPSG","4326","EPSG","2353","1.0","-1.0","0.0","20174706.497229","-13442304.925084","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2354","error","EPSG","4326","EPSG","2354","1.0","-1.0","0.0","1.2463214135521E7","-647097.330633","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2354 (area of use)","passing","EPSG","4326","EPSG","2354","90.000000","37.870000","0.0","30500000.000000","4193070.592337","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2370","passing","EPSG","4326","EPSG","2370","1.0","-1.0","0.0","-12122374.654615","-418603.692156","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2371","passing","EPSG","4326","EPSG","2371","1.0","-1.0","0.0","-13529671.039234","-526375.856290","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2372","passing","EPSG","4326","EPSG","2372","1.0","-1.0","0.0","-15365967.754618","-724567.762394","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2373","error","EPSG","4326","EPSG","2373","1.0","-1.0","0.0","-1.4742952048569E7","-494346.051652","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2373 (area of use)","passing","EPSG","4326","EPSG","2373","84.000000","37.745000","0.0","500000.000000","4179196.481191","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2374","passing","EPSG","4326","EPSG","2374","1.0","-1.0","0.0","-8825293.502771","-13442304.925084","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2375","error","EPSG","4326","EPSG","2375","1.0","-1.0","0.0","-1.7536785864479E7","-647097.330633","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2375 (area of use)","passing","EPSG","4326","EPSG","2375","90.000000","37.870000","0.0","500000.000000","4193070.592337","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2391","passing","EPSG","4326","EPSG","2391","1.0","-1.0","0.0","-772952.720772","-117585.851258","-165.167033","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2392","passing","EPSG","4326","EPSG","2392","1.0","-1.0","0.0","-132069.800269","-120055.596575","-165.167033","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2393","passing","EPSG","4326","EPSG","2393","1.0","-1.0","0.0","500676.475839","-122978.789758","-165.167033","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" @@ -775,14 +790,18 @@ "4326 -> 2402","passing","EPSG","4326","EPSG","2402","1.0","-1.0","0.0","12470826.408097","-525925.858634","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2403","passing","EPSG","4326","EPSG","2403","1.0","-1.0","0.0","11634759.823981","-723899.094671","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2404","error","EPSG","4326","EPSG","2404","1.0","-1.0","0.0","1.3257371875881E7","-493957.197245","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2404 (area of use)","passing","EPSG","4326","EPSG","2404","84.000000","37.745000","0.0","28500031.852334","4179238.007159","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2405","passing","EPSG","4326","EPSG","2405","1.0","-1.0","0.0","20096226.905901","-13446275.705824","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2406","error","EPSG","4326","EPSG","2406","1.0","-1.0","0.0","1.246362209204E7","-646585.613952","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2406 (area of use)","passing","EPSG","4326","EPSG","2406","90.000000","37.870000","0.0","30500015.799843","4193110.444707","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2422","passing","EPSG","4326","EPSG","2422","1.0","-1.0","0.0","-12122001.338677","-418259.208244","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2423","passing","EPSG","4326","EPSG","2423","1.0","-1.0","0.0","-13529173.591903","-525925.858634","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2424","passing","EPSG","4326","EPSG","2424","1.0","-1.0","0.0","-15365240.176019","-723899.094671","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2425","error","EPSG","4326","EPSG","2425","1.0","-1.0","0.0","-1.4742628124119E7","-493957.197245","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2425 (area of use)","passing","EPSG","4326","EPSG","2425","84.000000","37.745000","0.0","500031.852334","4179238.007159","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2426","passing","EPSG","4326","EPSG","2426","1.0","-1.0","0.0","-8903773.094099","-13446275.705824","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2427","error","EPSG","4326","EPSG","2427","1.0","-1.0","0.0","-1.753637790796E7","-646585.613952","-122.535693","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2427 (area of use)","passing","EPSG","4326","EPSG","2427","90.000000","37.870000","0.0","500015.799843","4193110.444707","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2462","passing","EPSG","4326","EPSG","2462","1.0","-1.0","0.0","2227085.505425","-117593.527290","-11.731848","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2463","passing","EPSG","4326","EPSG","2463","1.0","-1.0","0.0","-1772892.974308","-117636.520838","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2464","passing","EPSG","4326","EPSG","2464","1.0","-1.0","0.0","-2499245.076581","-123031.573310","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" @@ -832,8 +851,10 @@ "4326 -> 2542","passing","EPSG","4326","EPSG","2542","1.0","-1.0","0.0","12470641.069504","-525897.864005","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2543","passing","EPSG","4326","EPSG","2543","1.0","-1.0","0.0","11634504.112009","-723872.049499","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2544","error","EPSG","4326","EPSG","2544","1.0","-1.0","0.0","1.3257225575297E7","-493923.151171","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2544 (area of use)","passing","EPSG","4326","EPSG","2544","84.000000","61.335000","0.0","28500035.765972","6802858.571915","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2545","passing","EPSG","4326","EPSG","2545","1.0","-1.0","0.0","20109103.176763","-13454506.333789","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2546","error","EPSG","4326","EPSG","2546","1.0","-1.0","0.0","1.2463441929365E7","-646541.731725","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2546 (area of use)","passing","EPSG","4326","EPSG","2546","90.000000","65.360000","0.0","30500023.117335","7251506.978334","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2550","passing","EPSG","4326","EPSG","2550","1.0","-1.0","0.0","-8873611.031099","-9738015.6953","1133.347851","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2582","passing","EPSG","4326","EPSG","2582","1.0","-1.0","0.0","-1772904.719281","-117625.763728","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2583","passing","EPSG","4326","EPSG","2583","1.0","-1.0","0.0","-2132012.967431","-120096.266838","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" @@ -858,8 +879,10 @@ "4326 -> 2602","passing","EPSG","4326","EPSG","2602","1.0","-1.0","0.0","-13529358.930496","-525897.864005","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2603","passing","EPSG","4326","EPSG","2603","1.0","-1.0","0.0","-15365495.887991","-723872.049499","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2604","error","EPSG","4326","EPSG","2604","1.0","-1.0","0.0","-1.4742774424703E7","-493923.151171","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2604 (area of use)","passing","EPSG","4326","EPSG","2604","84.000000","61.335000","0.0","500035.765972","6802858.571915","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2605","passing","EPSG","4326","EPSG","2605","1.0","-1.0","0.0","-8890896.823237","-13454506.333789","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2606","error","EPSG","4326","EPSG","2606","1.0","-1.0","0.0","-1.7536558070635E7","-646541.731725","-130.094053","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2606 (area of use)","passing","EPSG","4326","EPSG","2606","90.000000","65.360000","0.0","500023.117335","7251506.978334","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2641","passing","EPSG","4326","EPSG","2641","1.0","-1.0","0.0","5227107.025692","-117636.520838","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2642","passing","EPSG","4326","EPSG","2642","1.0","-1.0","0.0","5867999.035810","-120107.237154","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2643","passing","EPSG","4326","EPSG","2643","1.0","-1.0","0.0","6500754.923419","-123031.573310","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" @@ -882,8 +905,10 @@ "4326 -> 2660","passing","EPSG","4326","EPSG","2660","1.0","-1.0","0.0","12470697.206405","-525941.470414","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2661","passing","EPSG","4326","EPSG","2661","1.0","-1.0","0.0","11634583.710329","-723928.382214","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2662","error","EPSG","4326","EPSG","2662","1.0","-1.0","0.0","1.3257268872553E7","-493966.46816","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2662 (area of use)","passing","EPSG","4326","EPSG","2662","84.000000","63.570000","0.0","28500036.223407","7051963.091749","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2663","passing","EPSG","4326","EPSG","2663","1.0","-1.0","0.0","20106366.241160","-13449395.681243","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2664","error","EPSG","4326","EPSG","2664","1.0","-1.0","0.0","1.246349549295E7","-646598.227329","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2664 (area of use)","passing","EPSG","4326","EPSG","2664","90.000000","65.360000","0.0","30500022.789252","7251516.686733","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2699","passing","EPSG","4326","EPSG","2699","1.0","-1.0","0.0","-1772892.974308","-117636.520838","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2700","passing","EPSG","4326","EPSG","2700","1.0","-1.0","0.0","-2132000.964190","-120107.237154","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2701","passing","EPSG","4326","EPSG","2701","1.0","-1.0","0.0","-2499245.076581","-123031.573310","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" @@ -906,12 +931,16 @@ "4326 -> 2718","passing","EPSG","4326","EPSG","2718","1.0","-1.0","0.0","-13529302.793595","-525941.470414","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2719","passing","EPSG","4326","EPSG","2719","1.0","-1.0","0.0","-15365416.289671","-723928.382214","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2720","error","EPSG","4326","EPSG","2720","1.0","-1.0","0.0","-1.4742731127447E7","-493966.46816","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2720 (area of use)","passing","EPSG","4326","EPSG","2720","84.000000","63.570000","0.0","500036.223407","7051963.091749","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2721","passing","EPSG","4326","EPSG","2721","1.0","-1.0","0.0","-8893633.758840","-13449395.681243","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2722","error","EPSG","4326","EPSG","2722","1.0","-1.0","0.0","-1.753650450705E7","-646598.227329","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2722 (area of use)","passing","EPSG","4326","EPSG","2722","90.000000","65.360000","0.0","500022.789252","7251516.686733","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2736","passing","EPSG","4326","EPSG","2736","1.0","-1.0","0.0","-3262616.551242","9869767.115019","8.418301","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2737","passing","EPSG","4326","EPSG","2737","1.0","-1.0","0.0","-4079538.649943","9859742.728708","8.418301","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2759","error","EPSG","4326","EPSG","2759","1.0","-1.0","0.0","1.7159919726823E7","-3961313.962369","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2759 (area of use)","passing","EPSG","4326","EPSG","2759","-85.840000","32.995000","0.0","199376.968351","276640.741826","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2760","error","EPSG","4326","EPSG","2760","1.0","-1.0","0.0","1.8379967073642E7","-3952167.354801","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2760 (area of use)","passing","EPSG","4326","EPSG","2760","-87.390000","32.580000","0.0","610327.596204","286042.606823","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2764","passing","EPSG","4326","EPSG","2764","1.0","-1.0","0.0","1.1131856190038E7","1298569.855381","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2765","passing","EPSG","4326","EPSG","2765","1.0","-1.0","0.0","1.1100796271263E7","1659604.579459","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2766","passing","EPSG","4326","EPSG","2766","1.0","-1.0","0.0","1.4254884235227E7","5989905.116896","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -926,13 +955,20 @@ "4326 -> 2775","passing","EPSG","4326","EPSG","2775","1.0","-1.0","0.0","9609648.833132","-675630.039935","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2776","passing","EPSG","4326","EPSG","2776","1.0","-1.0","0.0","13929727.098412","-4708319.149141","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2777","error","EPSG","4326","EPSG","2777","1.0","-1.0","0.0","1.5029510779743E7","-3165551.699573","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2777 (area of use)","passing","EPSG","4326","EPSG","2777","-81.150000","27.620000","0.0","185195.147599","364110.217140","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2778","error","EPSG","4326","EPSG","2778","1.0","-1.0","0.0","1.5442048203015E7","-3186367.239404","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2778 (area of use)","passing","EPSG","4326","EPSG","2778","-82.235000","27.935000","0.0","176872.429518","399028.398821","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2779","passing","EPSG","4326","EPSG","2779","1.0","-1.0","0.0","1.0550650155667E7","427782.799905","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2780","error","EPSG","4326","EPSG","2780","1.0","-1.0","0.0","1.5511530289253E7","-3817662.34613","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2780 (area of use)","passing","EPSG","4326","EPSG","2780","-82.120000","32.520000","0.0","204384.173012","279375.569802","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2781","error","EPSG","4326","EPSG","2781","1.0","-1.0","0.0","1.6884448431364E7","-3863405.498204","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2781 (area of use)","passing","EPSG","4326","EPSG","2781","-84.300000","32.815000","0.0","687514.876067","312094.285728","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2790","error","EPSG","4326","EPSG","2790","1.0","-1.0","0.0","1.8509247999883E7","-4716583.113964","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2790 (area of use)","passing","EPSG","4326","EPSG","2790","-88.145000","39.780000","0.0","316133.604813","345590.735006","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2792","error","EPSG","4326","EPSG","2792","1.0","-1.0","0.0","1.6980563567191E7","-4483369.918208","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2792 (area of use)","passing","EPSG","4326","EPSG","2792","-85.685000","39.860000","0.0","98431.305717","511973.655618","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2793","error","EPSG","4326","EPSG","2793","1.0","-1.0","0.0","1.8470937971857E7","-4522155.488717","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2793 (area of use)","passing","EPSG","4326","EPSG","2793","-87.170000","39.770000","0.0","892574.675639","501984.623192","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2794","passing","EPSG","4326","EPSG","2794","1.0","-1.0","0.0","1.2493754958641E7","2708853.657912","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2795","passing","EPSG","4326","EPSG","2795","1.0","-1.0","0.0","1.1460553625321E7","1661745.543903","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2796","passing","EPSG","4326","EPSG","2796","1.0","-1.0","0.0","1.1621497257386E7","2111191.990303","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -953,6 +989,7 @@ "4326 -> 2811","passing","EPSG","4326","EPSG","2811","1.0","-1.0","0.0","1.192601192142E7","2053668.621498","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2812","passing","EPSG","4326","EPSG","2812","1.0","-1.0","0.0","1.1867181831423E7","1975209.580327","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2813","error","EPSG","4326","EPSG","2813","1.0","-1.0","0.0","1.8772001648449E7","-3937156.383224","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2813 (area of use)","passing","EPSG","4326","EPSG","2813","-89.030000","32.510000","0.0","281520.857869","333718.072514","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2818","passing","EPSG","4326","EPSG","2818","1.0","-1.0","0.0","1.2324918268659E7","4366651.863837","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2819","passing","EPSG","4326","EPSG","2819","1.0","-1.0","0.0","1.1859582682383E7","2563845.950141","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2823","passing","EPSG","4326","EPSG","2823","1.0","-1.0","0.0","12385210.049457","-5091569.861759","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" @@ -1004,12 +1041,18 @@ "4326 -> 2879","passing","EPSG","4326","EPSG","2879","1.0","-1.0","0.0","3.152765621337E7","-2216629.556017","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 2880","passing","EPSG","4326","EPSG","2880","1.0","-1.0","0.0","45701112.989039","-15447210.408475","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2881","error","EPSG","4326","EPSG","2881","1.0","-1.0","0.0","4.9309319950207E7","-1.0385647534347E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2881 (area of use)","passing","EPSG","4326","EPSG","2881","-81.150000","27.620000","0.0","607594.413748","1194584.937402","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2882","error","EPSG","4326","EPSG","2882","1.0","-1.0","0.0","5.0662786479725E7","-1.0453939851278E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2882 (area of use)","passing","EPSG","4326","EPSG","2882","-82.235000","27.935000","0.0","580288.962843","1309145.671798","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2883","passing","EPSG","4326","EPSG","2883","1.0","-1.0","0.0","3.461492471905E7","1403484.069356","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 2884","error","EPSG","4326","EPSG","2884","1.0","-1.0","0.0","5.0890745624323E7","-1.2525113880594E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2884 (area of use)","passing","EPSG","4326","EPSG","2884","-82.120000","32.520000","0.0","670550.407957","916584.681924","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2885","error","EPSG","4326","EPSG","2885","1.0","-1.0","0.0","5.5395061228234E7","-1.2675189538692E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2885 (area of use)","passing","EPSG","4326","EPSG","2885","-84.300000","32.815000","0.0","2255621.722229","1023929.335760","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2889","error","EPSG","4326","EPSG","2889","1.0","-1.0","0.0","5.5710398969693E7","-1.4711272806654E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2889 (area of use)","passing","EPSG","4326","EPSG","2889","-85.685000","39.860000","0.0","322936.708506","1677616.901806","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2890","error","EPSG","4326","EPSG","2890","1.0","-1.0","0.0","6.0600068996002E7","-1.4838521799231E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2890 (area of use)","passing","EPSG","4326","EPSG","2890","-87.170000","39.770000","0.0","2928388.748326","1644844.551254","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2891","passing","EPSG","4326","EPSG","2891","1.0","-1.0","0.0","3.5059203444504E7","1569081.232317","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 2892","passing","EPSG","4326","EPSG","2892","1.0","-1.0","0.0","3.5342614219278E7","3714598.128125","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 2893","passing","EPSG","4326","EPSG","2893","1.0","-1.0","0.0","3.2708684370125E7","-906152.346323","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" @@ -1019,6 +1062,7 @@ "4326 -> 2897","passing","EPSG","4326","EPSG","2897","1.0","-1.0","0.0","5.3954791524009E7","2049141.787235","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 2898","passing","EPSG","4326","EPSG","2898","1.0","-1.0","0.0","4.7115923552287E7","1905110.937509","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 2899","error","EPSG","4326","EPSG","2899","1.0","-1.0","0.0","6.1587808741621E7","-1.2917153900627E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2899 (area of use)","passing","EPSG","4326","EPSG","2899","-89.030000","32.510000","0.0","923623.014527","1094873.376241","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2901","passing","EPSG","4326","EPSG","2901","1.0","-1.0","0.0","4.0436083558584E7","1.432628564251E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 2905","passing","EPSG","4326","EPSG","2905","1.0","-1.0","0.0","44077778.712423","-15634150.560445","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 2906","passing","EPSG","4326","EPSG","2906","1.0","-1.0","0.0","47881070.213714","-16352306.319676","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" @@ -1079,9 +1123,13 @@ "4326 -> 2962","passing","EPSG","4326","EPSG","2962","1.0","-1.0","0.0","8480365.932792","-210356.338473","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2964","passing","EPSG","4326","EPSG","2964","1.0","-1.0","0.0","2.3309991432664E7","3.8057058222507E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 2965","error","EPSG","4326","EPSG","2965","1.0","-1.0","0.0","5.5710398969693E7","-1.4709189473654E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2965 (area of use)","passing","EPSG","4326","EPSG","2965","-85.685000","39.860000","0.0","322936.708506","1679700.234806","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2966","error","EPSG","4326","EPSG","2966","1.0","-1.0","0.0","6.0600068996002E7","-1.4836438466231E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2966 (area of use)","passing","EPSG","4326","EPSG","2966","-87.170000","39.770000","0.0","2928388.748326","1646927.884254","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2967","error","EPSG","4326","EPSG","2967","1.0","-1.0","0.0","5.5710398969693E7","-1.4709189473654E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2967 (area of use)","passing","EPSG","4326","EPSG","2967","-85.685000","39.860000","0.0","322936.708506","1679700.234806","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2968","error","EPSG","4326","EPSG","2968","1.0","-1.0","0.0","6.0600068996002E7","-1.4836438466231E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 2968 (area of use)","passing","EPSG","4326","EPSG","2968","-87.170000","39.770000","0.0","2928388.748326","1646927.884254","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 2969","passing","EPSG","4326","EPSG","2969","1.0","-1.0","0.0","9876397.190046","-254723.882194","-399.743672","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2970","passing","EPSG","4326","EPSG","2970","1.0","-1.0","0.0","9876972.606652","-255021.253096","210.936311","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 2971","passing","EPSG","4326","EPSG","2971","1.0","-1.0","0.0","7306251.382692","-180679.977369","-67.117376","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -1212,6 +1260,7 @@ "4326 -> 3104","passing","EPSG","4326","EPSG","3104","1.0","-1.0","0.0","1618328.893064","-112236.508712","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3105","passing","EPSG","4326","EPSG","3105","1.0","-1.0","0.0","945404.562756","-110791.642237","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3106","error","EPSG","4326","EPSG","3106","1.0","-1.0","0.0","-1.7529831967062E7","-648424.255046","568.748383","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3106 (area of use)","passing","EPSG","4326","EPSG","3106","90.340000","23.580000","0.0","534976.508958","2607474.252676","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 3107","passing","EPSG","4326","EPSG","3107","1.0","-1.0","0.0","-1.2026827635186E7","-3715356.006211","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3108","passing","EPSG","4326","EPSG","3108","1.0","-1.0","0.0","427509.877329","-5545990.703908","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3109","passing","EPSG","4326","EPSG","3109","1.0","-1.0","0.0","389109.080568","-5495390.959162","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -1512,6 +1561,7 @@ "4326 -> 3433","passing","EPSG","4326","EPSG","3433","1.0","-1.0","0.0","3.6521764850117E7","4260391.267194","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 3434","passing","EPSG","4326","EPSG","3434","1.0","-1.0","0.0","3.6419862433268E7","5444886.024408","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 3435","error","EPSG","4326","EPSG","3435","1.0","-1.0","0.0","6.0725757812949E7","-1.547432309973E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3435 (area of use)","passing","EPSG","4326","EPSG","3435","-88.145000","39.780000","0.0","1037181.668459","1133825.603099","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 3437","passing","EPSG","4326","EPSG","3437","1.0","-1.0","0.0","40633809.970593","-16704592.121454","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3438","passing","EPSG","4326","EPSG","3438","1.0","-1.0","0.0","39768638.735981","-16176221.233964","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3439","passing","EPSG","4326","EPSG","3439","1.0","-1.0","0.0","-5951307.244793","-173135.917605","-31.060822","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -1519,6 +1569,7 @@ "4326 -> 3441","passing","EPSG","4326","EPSG","3441","1.0","-1.0","0.0","3.6521764850117E7","4260391.267194","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 3442","passing","EPSG","4326","EPSG","3442","1.0","-1.0","0.0","3.6419862433268E7","5444886.024408","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 3443","error","EPSG","4326","EPSG","3443","1.0","-1.0","0.0","6.0725757812949E7","-1.547432309973E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3443 (area of use)","passing","EPSG","4326","EPSG","3443","-88.145000","39.780000","0.0","1037181.668459","1133825.603099","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 3445","passing","EPSG","4326","EPSG","3445","1.0","-1.0","0.0","40633809.970593","-16704592.121454","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3446","passing","EPSG","4326","EPSG","3446","1.0","-1.0","0.0","39768638.735981","-16176221.233964","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3447","passing","EPSG","4326","EPSG","3447","1.0","-1.0","0.0","-379774.399828","-6308432.30838","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -1538,7 +1589,9 @@ "4326 -> 3463","passing","EPSG","4326","EPSG","3463","1.0","-1.0","0.0","11671689.678538","-5152007.650725","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3464","passing","EPSG","4326","EPSG","3464","1.0","-1.0","0.0","11671689.678538","-5152007.650725","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3465","error","EPSG","4326","EPSG","3465","1.0","-1.0","0.0","1.7159919726823E7","-3961313.962369","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3465 (area of use)","passing","EPSG","4326","EPSG","3465","-85.840000","32.995000","0.0","199376.968351","276640.741826","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 3466","error","EPSG","4326","EPSG","3466","1.0","-1.0","0.0","1.8379967073642E7","-3952167.354801","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3466 (area of use)","passing","EPSG","4326","EPSG","3466","-87.390000","32.580000","0.0","610327.596204","286042.606823","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 3467","passing","EPSG","4326","EPSG","3467","1.0","-1.0","0.0","7104914.414304","1.1599667194798E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3468","passing","EPSG","4326","EPSG","3468","1.0","-1.0","0.0","2.1299477541839E7","-9945672.888623","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3477","passing","EPSG","4326","EPSG","3477","1.0","-1.0","0.0","8328717.21702","1.4116821977524E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -1570,22 +1623,36 @@ "4326 -> 3509","passing","EPSG","4326","EPSG","3509","1.0","-1.0","0.0","13929727.098412","-4708319.149141","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3510","passing","EPSG","4326","EPSG","3510","1.0","-1.0","0.0","45701112.989039","-15447210.408475","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 3511","error","EPSG","4326","EPSG","3511","1.0","-1.0","0.0","1.5029510779743E7","-3165551.699573","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3511 (area of use)","passing","EPSG","4326","EPSG","3511","-81.150000","27.620000","0.0","185195.147599","364110.217140","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 3512","error","EPSG","4326","EPSG","3512","1.0","-1.0","0.0","4.9309319950207E7","-1.0385647534347E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3512 (area of use)","passing","EPSG","4326","EPSG","3512","-81.150000","27.620000","0.0","607594.413748","1194584.937402","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 3513","passing","EPSG","4326","EPSG","3513","1.0","-1.0","0.0","1.0071974621001E7","811782.97242","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3514","passing","EPSG","4326","EPSG","3514","1.0","-1.0","0.0","1.0550650155667E7","427782.799905","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3515","passing","EPSG","4326","EPSG","3515","1.0","-1.0","0.0","3.461492471905E7","1403484.069356","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 3516","error","EPSG","4326","EPSG","3516","1.0","-1.0","0.0","1.5442048203015E7","-3186367.239404","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3516 (area of use)","passing","EPSG","4326","EPSG","3516","-82.235000","27.935000","0.0","176872.429518","399028.398821","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 3517","error","EPSG","4326","EPSG","3517","1.0","-1.0","0.0","5.0662786479725E7","-1.0453939851278E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3517 (area of use)","passing","EPSG","4326","EPSG","3517","-82.235000","27.935000","0.0","580288.962843","1309145.671798","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 3518","error","EPSG","4326","EPSG","3518","1.0","-1.0","0.0","1.5511530289253E7","-3817662.34613","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3518 (area of use)","passing","EPSG","4326","EPSG","3518","-82.120000","32.520000","0.0","204384.173012","279375.569802","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 3519","error","EPSG","4326","EPSG","3519","1.0","-1.0","0.0","5.0890745624323E7","-1.2525113880594E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3519 (area of use)","passing","EPSG","4326","EPSG","3519","-82.120000","32.520000","0.0","670550.407957","916584.681924","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 3520","error","EPSG","4326","EPSG","3520","1.0","-1.0","0.0","1.6884448431364E7","-3863405.498204","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3520 (area of use)","passing","EPSG","4326","EPSG","3520","-84.300000","32.815000","0.0","687514.876067","312094.285728","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 3521","error","EPSG","4326","EPSG","3521","1.0","-1.0","0.0","5.5395061228234E7","-1.2675189538692E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3521 (area of use)","passing","EPSG","4326","EPSG","3521","-84.300000","32.815000","0.0","2255621.722229","1023929.335760","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 3528","error","EPSG","4326","EPSG","3528","1.0","-1.0","0.0","1.8509247999883E7","-4716583.113964","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3528 (area of use)","passing","EPSG","4326","EPSG","3528","-88.145000","39.780000","0.0","316133.604813","345590.735006","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 3529","error","EPSG","4326","EPSG","3529","1.0","-1.0","0.0","6.0725757812949E7","-1.547432309973E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3529 (area of use)","passing","EPSG","4326","EPSG","3529","-88.145000","39.780000","0.0","1037181.668459","1133825.603099","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 3532","error","EPSG","4326","EPSG","3532","1.0","-1.0","0.0","1.6980563567191E7","-4483369.918208","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3532 (area of use)","passing","EPSG","4326","EPSG","3532","-85.685000","39.860000","0.0","98431.305717","511973.655618","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 3533","error","EPSG","4326","EPSG","3533","1.0","-1.0","0.0","5.5710398969693E7","-1.4709189473654E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3533 (area of use)","passing","EPSG","4326","EPSG","3533","-85.685000","39.860000","0.0","322936.708506","1679700.234806","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 3534","error","EPSG","4326","EPSG","3534","1.0","-1.0","0.0","1.8470937971857E7","-4522155.488717","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3534 (area of use)","passing","EPSG","4326","EPSG","3534","-87.170000","39.770000","0.0","892574.675639","501984.623192","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 3535","error","EPSG","4326","EPSG","3535","1.0","-1.0","0.0","6.0600068996002E7","-1.4836438466231E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3535 (area of use)","passing","EPSG","4326","EPSG","3535","-87.170000","39.770000","0.0","2928388.748326","1646927.884254","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 3536","passing","EPSG","4326","EPSG","3536","1.0","-1.0","0.0","1.2493754958641E7","2708853.657912","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3537","passing","EPSG","4326","EPSG","3537","1.0","-1.0","0.0","4.0989927726809E7","8887297.375966","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 3538","passing","EPSG","4326","EPSG","3538","1.0","-1.0","0.0","1.1460553625321E7","1661745.543903","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -1643,7 +1710,9 @@ "4326 -> 3595","passing","EPSG","4326","EPSG","3595","1.0","-1.0","0.0","1.190460508534E7","1937737.131019","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3596","passing","EPSG","4326","EPSG","3596","1.0","-1.0","0.0","1.1867181831423E7","1975209.580327","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3597","error","EPSG","4326","EPSG","3597","1.0","-1.0","0.0","1.8772001648449E7","-3937156.383224","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3597 (area of use)","passing","EPSG","4326","EPSG","3597","-89.030000","32.510000","0.0","281520.857869","333718.072514","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 3598","error","EPSG","4326","EPSG","3598","1.0","-1.0","0.0","6.1587808741621E7","-1.2917153900627E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 3598 (area of use)","passing","EPSG","4326","EPSG","3598","-89.030000","32.510000","0.0","923623.014527","1094873.376241","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 3604","passing","EPSG","4326","EPSG","3604","1.0","-1.0","0.0","1.2324918268659E7","4366651.863837","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 3605","passing","EPSG","4326","EPSG","3605","1.0","-1.0","0.0","4.0436083558584E7","1.432628564251E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 3606","passing","EPSG","4326","EPSG","3606","1.0","-1.0","0.0","1.1859582682383E7","2563845.950141","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -1926,14 +1995,18 @@ "4326 -> 4514","passing","EPSG","4326","EPSG","4514","1.0","-1.0","0.0","12470335.717018","-526375.579956","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 4515","passing","EPSG","4326","EPSG","4515","1.0","-1.0","0.0","11634040.017547","-724567.333919","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 4516","error","EPSG","4326","EPSG","4516","1.0","-1.0","0.0","1.3257055161241E7","-494345.816812","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 4516 (area of use)","passing","EPSG","4326","EPSG","4516","84.000000","37.745000","0.0","28500000.000000","4179194.532270","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 4517","passing","EPSG","4326","EPSG","4517","1.0","-1.0","0.0","20174652.663267","-13442262.545895","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 4518","error","EPSG","4326","EPSG","4518","1.0","-1.0","0.0","1.2463222673201E7","-647097.022634","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 4518 (area of use)","passing","EPSG","4326","EPSG","4518","90.000000","37.870000","0.0","30500000.000000","4193068.636920","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 4534","passing","EPSG","4326","EPSG","4534","1.0","-1.0","0.0","-12122368.623887","-418603.482556","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 4535","passing","EPSG","4326","EPSG","4535","1.0","-1.0","0.0","-13529664.282982","-526375.579956","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 4536","passing","EPSG","4326","EPSG","4536","1.0","-1.0","0.0","-15365959.982453","-724567.333919","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 4537","error","EPSG","4326","EPSG","4537","1.0","-1.0","0.0","-1.4742944838759E7","-494345.816812","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 4537 (area of use)","passing","EPSG","4326","EPSG","4537","84.000000","37.745000","0.0","500000.000000","4179194.532270","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 4538","passing","EPSG","4326","EPSG","4538","1.0","-1.0","0.0","-8825347.336733","-13442262.545895","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 4539","error","EPSG","4326","EPSG","4539","1.0","-1.0","0.0","-1.7536777326799E7","-647097.022634","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 4539 (area of use)","passing","EPSG","4326","EPSG","4539","90.000000","37.870000","0.0","500000.000000","4193068.636920","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 4559","passing","EPSG","4326","EPSG","4559","1.0","-1.0","0.0","9876408.371062","-255706.192524","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 4568","passing","EPSG","4326","EPSG","4568","1.0","-1.0","0.0","877435.690357","-418608.123450","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 4569","passing","EPSG","4326","EPSG","4569","1.0","-1.0","0.0","-1366169.035253","-724562.720366","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" @@ -1946,14 +2019,18 @@ "4326 -> 4653","passing","EPSG","4326","EPSG","4653","1.0","-1.0","0.0","12470128.448264","-526378.956406","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 4654","passing","EPSG","4326","EPSG","4654","1.0","-1.0","0.0","11633830.964747","-724562.720366","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 4655","error","EPSG","4326","EPSG","4655","1.0","-1.0","0.0","1.32568047941E7","-494353.740439","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 4655 (area of use)","passing","EPSG","4326","EPSG","4655","84.000000","37.745000","0.0","28500000.000000","4179268.531551","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 4656","passing","EPSG","4326","EPSG","4656","1.0","-1.0","0.0","20163286.592454","-13435548.191109","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 4766","error","EPSG","4326","EPSG","4766","1.0","-1.0","0.0","1.2462927650746E7","-647107.280337","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 4766 (area of use)","passing","EPSG","4326","EPSG","4766","90.000000","37.870000","0.0","30500000.000000","4193142.877002","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 4782","passing","EPSG","4326","EPSG","4782","1.0","-1.0","0.0","-12122564.309643","-418608.123450","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 4783","passing","EPSG","4326","EPSG","4783","1.0","-1.0","0.0","-13529871.551736","-526378.956406","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 4784","passing","EPSG","4326","EPSG","4784","1.0","-1.0","0.0","-15366169.035253","-724562.720366","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 4785","error","EPSG","4326","EPSG","4785","1.0","-1.0","0.0","-1.47431952059E7","-494353.740439","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 4785 (area of use)","passing","EPSG","4326","EPSG","4785","84.000000","37.745000","0.0","500000.000000","4179268.531551","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 4786","passing","EPSG","4326","EPSG","4786","1.0","-1.0","0.0","-8836713.407546","-13435548.191109","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 4787","error","EPSG","4326","EPSG","4787","1.0","-1.0","0.0","-1.7537072349254E7","-647107.280337","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 4787 (area of use)","passing","EPSG","4326","EPSG","4787","90.000000","37.870000","0.0","500000.000000","4193142.877002","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 4826","passing","EPSG","4326","EPSG","4826","1.0","-1.0","0.0","3057318.277708","-1587120.453089","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 4839","passing","EPSG","4326","EPSG","4839","1.0","-1.0","0.0","-1506070.493898","-6435230.741586","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 4855","passing","EPSG","4326","EPSG","4855","1.0","-1.0","0.0","-401380.815652","889081.448564","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -2033,6 +2110,7 @@ "4326 -> 5258","passing","EPSG","4326","EPSG","5258","1.0","-1.0","0.0","-4515167.158491","-146876.164724","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 5259","passing","EPSG","4326","EPSG","5259","1.0","-1.0","0.0","-4969373.359334","-154187.932335","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 5266","error","EPSG","4326","EPSG","5266","1.0","-1.0","0.0","-1.7786777326799E7","-647097.022634","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5266 (area of use)","passing","EPSG","4326","EPSG","5266","90.435000","27.515000","0.0","292977.689777","3044771.574761","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 5269","passing","EPSG","4326","EPSG","5269","1.0","-1.0","0.0","6500664.653832","-123121.063287","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 5270","passing","EPSG","4326","EPSG","5270","1.0","-1.0","0.0","7123842.694496","-126552.875849","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 5271","passing","EPSG","4326","EPSG","5271","1.0","-1.0","0.0","7735822.920199","-130553.735327","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" @@ -2041,19 +2119,33 @@ "4326 -> 5274","passing","EPSG","4326","EPSG","5274","1.0","-1.0","0.0","9484832.841509","-146876.164724","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 5275","passing","EPSG","4326","EPSG","5275","1.0","-1.0","0.0","10030626.640666","-154187.932335","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 5292","error","EPSG","4326","EPSG","5292","1.0","-1.0","0.0","-1.8169909207122E7","-3169532.907567","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5292 (area of use)","passing","EPSG","4326","EPSG","5292","90.740000","27.710000","0.0","250657.492922","566304.800896","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 5293","error","EPSG","4326","EPSG","5293","1.0","-1.0","0.0","-1.7556513883394E7","-3133776.920429","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5293 (area of use)","passing","EPSG","4326","EPSG","5293","89.545000","27.015000","0.0","249503.791413","489292.358996","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 5294","error","EPSG","4326","EPSG","5294","1.0","-1.0","0.0","-1.7709618736852E7","-3142619.776416","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5294 (area of use)","passing","EPSG","4326","EPSG","5294","89.855000","26.995000","0.0","250496.296399","487076.287012","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 5295","error","EPSG","4326","EPSG","5295","1.0","-1.0","0.0","-1.7803978922572E7","-3148097.063507","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5295 (area of use)","passing","EPSG","4326","EPSG","5295","89.955000","28.025000","0.0","242296.764627","601214.712792","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 5296","error","EPSG","4326","EPSG","5296","1.0","-1.0","0.0","-1.7864343351674E7","-3151611.881638","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5296 (area of use)","passing","EPSG","4326","EPSG","5296","89.145000","27.320000","0.0","150529.768506","523488.643602","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 5299","error","EPSG","4326","EPSG","5299","1.0","-1.0","0.0","-1.7455334051796E7","-3127963.421504","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5299 (area of use)","passing","EPSG","4326","EPSG","5299","89.340000","27.485000","0.0","249011.744698","541371.899641","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 5301","error","EPSG","4326","EPSG","5301","1.0","-1.0","0.0","-1.7709618736852E7","-3142619.776416","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5301 (area of use)","passing","EPSG","4326","EPSG","5301","89.855000","27.665000","0.0","250493.321891","561318.143737","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 5303","error","EPSG","4326","EPSG","5303","1.0","-1.0","0.0","-1.7313201852726E7","-3119838.008648","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5303 (area of use)","passing","EPSG","4326","EPSG","5303","89.060000","27.040000","0.0","249338.535016","492062.465483","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 5304","error","EPSG","4326","EPSG","5304","1.0","-1.0","0.0","-1.7924955772937E7","-3155149.636554","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5304 (area of use)","passing","EPSG","4326","EPSG","5304","90.395000","26.980000","0.0","262739.969895","485420.700317","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 5305","error","EPSG","4326","EPSG","5305","1.0","-1.0","0.0","-1.7556513883394E7","-3133776.920429","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5305 (area of use)","passing","EPSG","4326","EPSG","5305","89.495000","27.575000","0.0","244569.020355","551346.138809","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 5307","error","EPSG","4326","EPSG","5307","1.0","-1.0","0.0","-1.8046929347289E7","-3162294.531826","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5307 (area of use)","passing","EPSG","4326","EPSG","5307","90.510000","27.460000","0.0","250988.478353","538601.624657","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 5308","error","EPSG","4326","EPSG","5308","1.0","-1.0","0.0","-1.7872987058161E7","-3152115.867565","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5308 (area of use)","passing","EPSG","4326","EPSG","5308","90.175000","27.005000","0.0","250827.087502","488184.339697","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 5309","error","EPSG","4326","EPSG","5309","1.0","-1.0","0.0","-1.7847071118416E7","-3150605.313657","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5309 (area of use)","passing","EPSG","4326","EPSG","5309","90.125000","27.595000","0.0","250822.726368","553561.215703","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 5311","error","EPSG","4326","EPSG","5311","1.0","-1.0","0.0","-1.8240638922076E7","-3173711.543301","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5311 (area of use)","passing","EPSG","4326","EPSG","5311","90.860000","27.080000","0.0","249338.769624","496494.644099","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 5316","passing","EPSG","4326","EPSG","5316","1.0","-1.0","0.0","1093343.867984","-6111667.938834","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5320","passing","EPSG","4326","EPSG","5320","1.0","-1.0","0.0","1.1589485449673E7","6556081.94433","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5321","passing","EPSG","4326","EPSG","5321","1.0","-1.0","0.0","1.1589485449673E7","6556081.94433","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -2075,6 +2167,7 @@ "4326 -> 5361","passing","EPSG","4326","EPSG","5361","1.0","-1.0","0.0","1.1625664379252E7","9668414.590036","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5362","passing","EPSG","4326","EPSG","5362","1.0","-1.0","0.0","1.4018825808604E7","9515984.716577","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5367","error","EPSG","4326","EPSG","5367","1.0","-1.0","0.0","1.6609414000793E7","-539612.639788","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5367 (area of use)","passing","EPSG","4326","EPSG","5367","-83.965000","6.990000","0.0","503867.028653","772875.430191","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 5382","passing","EPSG","4326","EPSG","5382","1.0","-1.0","0.0","8480365.932696","9789643.661529","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5383","passing","EPSG","4326","EPSG","5383","1.0","-1.0","0.0","7306321.314744","9819497.181068","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5387","passing","EPSG","4326","EPSG","5387","1.0","-1.0","0.0","1.4018825808604E7","9515984.716577","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -2088,6 +2181,7 @@ "4326 -> 5461","passing","EPSG","4326","EPSG","5461","1.0","-1.0","0.0","1.0235130039759E7","478378.87619","-277.649595","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5462","passing","EPSG","4326","EPSG","5462","1.0","-1.0","0.0","1.0210066837694E7","371829.165134","-277.649595","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5466","error","EPSG","4326","EPSG","5466","1.0","-1.0","0.0","1.8433986868757E7","-2417645.641648","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5466 (area of use)","passing","EPSG","4326","EPSG","5466","-88.470000","17.185000","0.0","83439.069411","149482.320476","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 5469","passing","EPSG","4326","EPSG","5469","1.0","-1.0","0.0","9570952.784497","190944.524085","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5472","passing","EPSG","4326","EPSG","5472","1.0","-1.0","0.0","1.0980369203568E7","-150245.280612","0.0","1.000000","1.000000","1.000000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5479","passing","EPSG","4326","EPSG","5479","1.0","-1.0","0.0","2585213.174496","-7552437.343099","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -2137,10 +2231,14 @@ "4326 -> 5583","passing","EPSG","4326","EPSG","5583","1.0","-1.0","0.0","-4081337.678587","-140489.215701","-131.901969","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 5588","passing","EPSG","4326","EPSG","5588","1.0","-1.0","0.0","3.1877552848696E7","-8575947.900939","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 5589","error","EPSG","4326","EPSG","5589","1.0","-1.0","0.0","6.0479502152242E7","-7931979.437137","0.0","1.000000","1.000000","1.000000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5589 (area of use)","passing","EPSG","4326","EPSG","5589","-88.470000","17.185000","0.0","273752.683778","490431.960666","0.0","1.000000","1.000000","1.000000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 5596","passing","EPSG","4326","EPSG","5596","1.0","-1.0","0.0","-156452.534464","-112409.590659","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5623","error","EPSG","4326","EPSG","5623","1.0","-1.0","0.0","5.2869091045749E7","-1.6822134288657E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5623 (area of use)","passing","EPSG","4326","EPSG","5623","-83.500000","43.865000","0.0","543955.268539","861923.897956","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, the datum uses NAD27 grids, so PROJ 9.6.0 was verified on the projection alone" "4326 -> 5624","error","EPSG","4326","EPSG","5624","1.0","-1.0","0.0","5.6012268152917E7","-1.6992073725156E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5624 (area of use)","passing","EPSG","4326","EPSG","5624","-86.105000","43.930000","0.0","406480.205370","885743.823098","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, the datum uses NAD27 grids, so PROJ 9.6.0 was verified on the projection alone" "4326 -> 5625","error","EPSG","4326","EPSG","5625","1.0","-1.0","0.0","6.0959498689223E7","-1.7275323241246E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 5625 (area of use)","passing","EPSG","4326","EPSG","5625","-86.930000","46.705000","0.0","956600.786553","1902557.360614","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, the datum uses NAD27 grids, so PROJ 9.6.0 was verified on the projection alone" "4326 -> 5627","passing","EPSG","4326","EPSG","5627","1.0","-1.0","0.0","-56927.729375","-110836.446997","-164.398575","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5629","passing","EPSG","4326","EPSG","5629","1.0","-1.0","0.0","-4967185.609965","9845873.742836","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 5631","passing","EPSG","4326","EPSG","5631","1.0","-1.0","0.0","1606760.604609","-111594.833491","-134.804153","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -2326,7 +2424,9 @@ "4326 -> 6353","passing","EPSG","4326","EPSG","6353","1.0","-1.0","0.0","1.9616403349184E7","1.9792787171974E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6354","passing","EPSG","4326","EPSG","6354","1.0","-1.0","0.0","2.4514276464516E7","1.7857445108058E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6355","error","EPSG","4326","EPSG","6355","1.0","-1.0","0.0","1.7159919726823E7","-3961313.962369","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 6355 (area of use)","passing","EPSG","4326","EPSG","6355","-85.840000","32.995000","0.0","199376.968351","276640.741826","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 6356","error","EPSG","4326","EPSG","6356","1.0","-1.0","0.0","1.8379967073642E7","-3952167.354801","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 6356 (area of use)","passing","EPSG","4326","EPSG","6356","-87.390000","32.580000","0.0","610327.596204","286042.606823","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 6362","passing","EPSG","4326","EPSG","6362","1.0","-1.0","0.0","1.3914521879767E7","2781068.978579","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6366","passing","EPSG","4326","EPSG","6366","1.0","-1.0","0.0","9380117.510219","-1.9757704843637E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6367","passing","EPSG","4326","EPSG","6367","1.0","-1.0","0.0","1.0990756729525E7","-1.9694702609941E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -2373,22 +2473,36 @@ "4326 -> 6435","passing","EPSG","4326","EPSG","6435","1.0","-1.0","0.0","13929727.098412","-4708319.149141","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 6436","passing","EPSG","4326","EPSG","6436","1.0","-1.0","0.0","45701112.989039","-15447210.408475","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 6437","error","EPSG","4326","EPSG","6437","1.0","-1.0","0.0","1.5029510779743E7","-3165551.699573","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 6437 (area of use)","passing","EPSG","4326","EPSG","6437","-81.150000","27.620000","0.0","185195.147599","364110.217140","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 6438","error","EPSG","4326","EPSG","6438","1.0","-1.0","0.0","4.9309319950207E7","-1.0385647534347E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 6438 (area of use)","passing","EPSG","4326","EPSG","6438","-81.150000","27.620000","0.0","607594.413748","1194584.937402","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 6439","passing","EPSG","4326","EPSG","6439","1.0","-1.0","0.0","1.0071974621001E7","811782.97242","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6440","passing","EPSG","4326","EPSG","6440","1.0","-1.0","0.0","1.0550650155667E7","427782.799905","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6441","passing","EPSG","4326","EPSG","6441","1.0","-1.0","0.0","3.461492471905E7","1403484.069356","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 6442","error","EPSG","4326","EPSG","6442","1.0","-1.0","0.0","1.5442048203015E7","-3186367.239404","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 6442 (area of use)","passing","EPSG","4326","EPSG","6442","-82.235000","27.935000","0.0","176872.429518","399028.398821","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 6443","error","EPSG","4326","EPSG","6443","1.0","-1.0","0.0","5.0662786479725E7","-1.0453939851278E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 6443 (area of use)","passing","EPSG","4326","EPSG","6443","-82.235000","27.935000","0.0","580288.962843","1309145.671798","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 6444","error","EPSG","4326","EPSG","6444","1.0","-1.0","0.0","1.5511530289253E7","-3817662.34613","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 6444 (area of use)","passing","EPSG","4326","EPSG","6444","-82.120000","32.520000","0.0","204384.173012","279375.569802","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 6445","error","EPSG","4326","EPSG","6445","1.0","-1.0","0.0","5.0890745624323E7","-1.2525113880594E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 6445 (area of use)","passing","EPSG","4326","EPSG","6445","-82.120000","32.520000","0.0","670550.407957","916584.681924","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 6446","error","EPSG","4326","EPSG","6446","1.0","-1.0","0.0","1.6884448431364E7","-3863405.498204","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 6446 (area of use)","passing","EPSG","4326","EPSG","6446","-84.300000","32.815000","0.0","687514.876067","312094.285728","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 6447","error","EPSG","4326","EPSG","6447","1.0","-1.0","0.0","5.5395061228234E7","-1.2675189538692E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 6447 (area of use)","passing","EPSG","4326","EPSG","6447","-84.300000","32.815000","0.0","2255621.722229","1023929.335760","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 6454","error","EPSG","4326","EPSG","6454","1.0","-1.0","0.0","1.8509247999883E7","-4716583.113964","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 6454 (area of use)","passing","EPSG","4326","EPSG","6454","-88.145000","39.780000","0.0","316133.604813","345590.735006","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 6455","error","EPSG","4326","EPSG","6455","1.0","-1.0","0.0","6.0725757812949E7","-1.547432309973E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 6455 (area of use)","passing","EPSG","4326","EPSG","6455","-88.145000","39.780000","0.0","1037181.668459","1133825.603099","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 6458","error","EPSG","4326","EPSG","6458","1.0","-1.0","0.0","1.6980563567191E7","-4483369.918208","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 6458 (area of use)","passing","EPSG","4326","EPSG","6458","-85.685000","39.860000","0.0","98431.305717","511973.655618","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 6459","error","EPSG","4326","EPSG","6459","1.0","-1.0","0.0","5.5710398969693E7","-1.4709189473654E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 6459 (area of use)","passing","EPSG","4326","EPSG","6459","-85.685000","39.860000","0.0","322936.708506","1679700.234806","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 6460","error","EPSG","4326","EPSG","6460","1.0","-1.0","0.0","1.8470937971857E7","-4522155.488717","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 6460 (area of use)","passing","EPSG","4326","EPSG","6460","-87.170000","39.770000","0.0","892574.675639","501984.623192","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 6461","error","EPSG","4326","EPSG","6461","1.0","-1.0","0.0","6.0600068996002E7","-1.4836438466231E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 6461 (area of use)","passing","EPSG","4326","EPSG","6461","-87.170000","39.770000","0.0","2928388.748326","1646927.884254","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 6462","passing","EPSG","4326","EPSG","6462","1.0","-1.0","0.0","1.2493754958641E7","2708853.657912","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6463","passing","EPSG","4326","EPSG","6463","1.0","-1.0","0.0","4.0989927726809E7","8887297.375966","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 6464","passing","EPSG","4326","EPSG","6464","1.0","-1.0","0.0","1.1460553625321E7","1661745.543903","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -2434,7 +2548,9 @@ "4326 -> 6504","passing","EPSG","4326","EPSG","6504","1.0","-1.0","0.0","1.1867181831423E7","1975209.580327","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6505","passing","EPSG","4326","EPSG","6505","1.0","-1.0","0.0","3.8934245725294E7","6480333.431424","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 6506","error","EPSG","4326","EPSG","6506","1.0","-1.0","0.0","1.8772001648449E7","-3937156.383224","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 6506 (area of use)","passing","EPSG","4326","EPSG","6506","-89.030000","32.510000","0.0","281520.857869","333718.072514","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 6507","error","EPSG","4326","EPSG","6507","1.0","-1.0","0.0","6.1587808741621E7","-1.2917153900627E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 6507 (area of use)","passing","EPSG","4326","EPSG","6507","-89.030000","32.510000","0.0","923623.014527","1094873.376241","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 6514","passing","EPSG","4326","EPSG","6514","1.0","-1.0","0.0","1.2324918268659E7","4366651.863837","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 6515","passing","EPSG","4326","EPSG","6515","1.0","-1.0","0.0","4.0436083558584E7","1.432628564251E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 6516","passing","EPSG","4326","EPSG","6516","1.0","-1.0","0.0","1.1859582682383E7","2563845.950141","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -2627,113 +2743,207 @@ "4326 -> 7259","passing","EPSG","4326","EPSG","7259","1.0","-1.0","0.0","7345479.009401","-18625587.774174","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 7260","passing","EPSG","4326","EPSG","7260","1.0","-1.0","0.0","24099292.383344","-61107449.222434","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 7261","error","EPSG","4326","EPSG","7261","1.0","-1.0","0.0","1.7209011773599E7","-4869004.979394","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7261 (area of use)","passing","EPSG","4326","EPSG","7261","-85.885000","39.195000","0.0","236976.336971","57649.528277","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7262","error","EPSG","4326","EPSG","7262","1.0","-1.0","0.0","5.6459899460548E7","-1.5974393836561E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7262 (area of use)","passing","EPSG","4326","EPSG","7262","-85.885000","39.195000","0.0","777479.865544","189138.494021","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7263","error","EPSG","4326","EPSG","7263","1.0","-1.0","0.0","1.7920662241704E7","-5070164.800854","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7263 (area of use)","passing","EPSG","4326","EPSG","7263","-87.310000","40.605000","0.0","239153.620871","53212.489118","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7264","error","EPSG","4326","EPSG","7264","1.0","-1.0","0.0","5.8794706037992E7","-1.6634365684135E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7264 (area of use)","passing","EPSG","4326","EPSG","7264","-87.310000","40.605000","0.0","784623.171141","174581.308050","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7265","error","EPSG","4326","EPSG","7265","1.0","-1.0","0.0","1.6995556996618E7","-4973833.522826","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7265 (area of use)","passing","EPSG","4326","EPSG","7265","-85.390000","40.320000","0.0","240849.971365","65981.498608","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7266","error","EPSG","4326","EPSG","7266","1.0","-1.0","0.0","5.575958991307E7","-1.631831881614E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7266 (area of use)","passing","EPSG","4326","EPSG","7266","-85.390000","40.320000","0.0","790188.614387","216474.300017","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7267","error","EPSG","4326","EPSG","7267","1.0","-1.0","0.0","1.7523740507246E7","-4953264.495864","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7267 (area of use)","passing","EPSG","4326","EPSG","7267","-86.470000","39.895000","0.0","242565.827637","68755.396458","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7268","error","EPSG","4326","EPSG","7268","1.0","-1.0","0.0","5.7492471980857E7","-1.6250835266847E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7268 (area of use)","passing","EPSG","4326","EPSG","7268","-86.470000","39.895000","0.0","795818.052839","225574.996547","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7269","error","EPSG","4326","EPSG","7269","1.0","-1.0","0.0","1.7426092740471E7","-4881137.56991","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7269 (area of use)","passing","EPSG","4326","EPSG","7269","-86.230000","39.195000","0.0","246047.350477","57651.365778","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7270","error","EPSG","4326","EPSG","7270","1.0","-1.0","0.0","5.7172105932695E7","-1.6014198843947E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7270 (area of use)","passing","EPSG","4326","EPSG","7270","-86.230000","39.195000","0.0","807240.349025","189144.522557","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7271","error","EPSG","4326","EPSG","7271","1.0","-1.0","0.0","1.7597172046532E7","-5046196.751334","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7271 (area of use)","passing","EPSG","4326","EPSG","7271","-86.575000","40.585000","0.0","246349.716477","56546.398519","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7272","error","EPSG","4326","EPSG","7272","1.0","-1.0","0.0","5.7733388622665E7","-1.6555730508335E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7272 (area of use)","passing","EPSG","4326","EPSG","7272","-86.575000","40.585000","0.0","808232.361475","185519.309140","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7273","error","EPSG","4326","EPSG","7273","1.0","-1.0","0.0","1.7474745528931E7","-5055963.015421","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7273 (area of use)","passing","EPSG","4326","EPSG","7273","-86.375000","40.740000","0.0","242111.682444","57099.831427","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7274","error","EPSG","4326","EPSG","7274","1.0","-1.0","0.0","5.7331727622834E7","-1.6587771993094E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7274 (area of use)","passing","EPSG","4326","EPSG","7274","-86.375000","40.740000","0.0","794328.078151","187335.030275","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7275","error","EPSG","4326","EPSG","7275","1.0","-1.0","0.0","1.7089819461183E7","-4768023.578631","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7275 (area of use)","passing","EPSG","4326","EPSG","7275","-85.725000","38.505000","0.0","229096.427127","75414.185267","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7276","error","EPSG","4326","EPSG","7276","1.0","-1.0","0.0","5.6068849348899E7","-1.5643090690892E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7276 (area of use)","passing","EPSG","4326","EPSG","7276","-85.725000","38.505000","0.0","751627.194666","247421.372829","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7277","error","EPSG","4326","EPSG","7277","1.0","-1.0","0.0","1.78452819983E7","-4921489.997195","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7277 (area of use)","passing","EPSG","4326","EPSG","7277","-87.090000","39.385000","0.0","245169.423628","62092.182519","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7278","error","EPSG","4326","EPSG","7278","1.0","-1.0","0.0","5.8547396022755E7","-1.6146588432464E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7278 (area of use)","passing","EPSG","4326","EPSG","7278","-87.090000","39.385000","0.0","804360.017352","203714.102148","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7279","error","EPSG","4326","EPSG","7279","1.0","-1.0","0.0","1.7572698539083E7","-5017078.450975","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7279 (area of use)","passing","EPSG","4326","EPSG","7279","-86.470000","40.305000","0.0","251052.008030","53219.707320","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7280","error","EPSG","4326","EPSG","7280","1.0","-1.0","0.0","5.7653095123641E7","-1.6460198217908E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7280 (area of use)","passing","EPSG","4326","EPSG","7280","-86.470000","40.305000","0.0","823659.796346","174604.989767","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7281","error","EPSG","4326","EPSG","7281","1.0","-1.0","0.0","1.7523550392945E7","-4786686.501065","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7281 (area of use)","passing","EPSG","4326","EPSG","7281","-86.465000","38.550000","0.0","243051.111343","85953.016154","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7282","error","EPSG","4326","EPSG","7282","1.0","-1.0","0.0","5.7491848247519E7","-1.5704320628911E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7282 (area of use)","passing","EPSG","4326","EPSG","7282","-86.465000","38.550000","0.0","797410.187797","281997.520499","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7283","error","EPSG","4326","EPSG","7283","1.0","-1.0","0.0","1.7820166795698E7","-4842323.437199","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7283 (area of use)","passing","EPSG","4326","EPSG","7283","-86.980000","38.835000","0.0","250419.457728","78745.949408","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7284","error","EPSG","4326","EPSG","7284","1.0","-1.0","0.0","5.8464997228886E7","-1.5886856143545E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7284 (area of use)","passing","EPSG","4326","EPSG","7284","-86.980000","38.835000","0.0","821584.504230","258352.335681","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7285","passing","EPSG","4326","EPSG","7285","1.0","-1.0","0.0","13070661.197424","-16295479.030398","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 7286","passing","EPSG","4326","EPSG","7286","1.0","-1.0","0.0","42882660.945215","-53462750.785563","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 7287","error","EPSG","4326","EPSG","7287","1.0","-1.0","0.0","1.7113811694569E7","-4874869.716826","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7287 (area of use)","passing","EPSG","4326","EPSG","7287","-85.490000","39.460000","0.0","253770.531281","75981.157505","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7288","error","EPSG","4326","EPSG","7288","1.0","-1.0","0.0","5.6147563867932E7","-1.5993635062621E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7288 (area of use)","passing","EPSG","4326","EPSG","7288","-85.490000","39.460000","0.0","832578.818046","249281.514247","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7289","passing","EPSG","4326","EPSG","7289","1.0","-1.0","0.0","11458622.615299","-17277024.724685","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 7290","passing","EPSG","4326","EPSG","7290","1.0","-1.0","0.0","37593831.030360","-56683038.617571","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 7291","error","EPSG","4326","EPSG","7291","1.0","-1.0","0.0","1.7745434498304E7","-4810324.07887","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7291 (area of use)","passing","EPSG","4326","EPSG","7291","-86.875000","38.555000","0.0","246537.610563","75409.744678","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7292","error","EPSG","4326","EPSG","7292","1.0","-1.0","0.0","5.821981301652E7","-1.5781871582092E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7292 (area of use)","passing","EPSG","4326","EPSG","7292","-86.875000","38.555000","0.0","808848.810656","247406.803997","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7293","error","EPSG","4326","EPSG","7293","1.0","-1.0","0.0","1.7209130553593E7","-5052246.981052","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7293 (area of use)","passing","EPSG","4326","EPSG","7293","-85.855000","41.210000","0.0","239580.648264","98191.495886","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7294","error","EPSG","4326","EPSG","7294","1.0","-1.0","0.0","5.6460289157912E7","-1.6575580303668E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7294 (area of use)","passing","EPSG","4326","EPSG","7294","-85.855000","41.210000","0.0","786024.176845","322149.932754","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7295","passing","EPSG","4326","EPSG","7295","1.0","-1.0","0.0","7345528.746212","-18442501.893969","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 7296","passing","EPSG","4326","EPSG","7296","1.0","-1.0","0.0","24099455.561532","-60506774.963795","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 7297","error","EPSG","4326","EPSG","7297","1.0","-1.0","0.0","1.7920591521106E7","-5014623.748948","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7297 (area of use)","passing","EPSG","4326","EPSG","7297","-87.315000","40.215000","0.0","238723.086558","65425.441511","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7298","error","EPSG","4326","EPSG","7298","1.0","-1.0","0.0","5.8794474015497E7","-1.6452144749672E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7298 (area of use)","passing","EPSG","4326","EPSG","7298","-87.315000","40.215000","0.0","783210.659816","214649.969357","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7299","error","EPSG","4326","EPSG","7299","1.0","-1.0","0.0","1.7426109926048E7","-5092113.039051","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7299 (area of use)","passing","EPSG","4326","EPSG","7299","-86.235000","41.335000","0.0","245441.172762","84312.974576","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7300","error","EPSG","4326","EPSG","7300","1.0","-1.0","0.0","5.7172162315709E7","-1.6706374195619E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7300 (area of use)","passing","EPSG","4326","EPSG","7300","-86.235000","41.335000","0.0","805251.580969","276616.817421","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7301","error","EPSG","4326","EPSG","7301","1.0","-1.0","0.0","1.8097602234827E7","-4824918.998251","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7301 (area of use)","passing","EPSG","4326","EPSG","7301","-87.650000","38.350000","0.0","240000.000000","58200.531198","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7302","error","EPSG","4326","EPSG","7302","1.0","-1.0","0.0","5.9375216665429E7","-1.5829755080094E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7302 (area of use)","passing","EPSG","4326","EPSG","7302","-87.650000","38.350000","0.0","787400.000000","190946.242774","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7303","error","EPSG","4326","EPSG","7303","1.0","-1.0","0.0","1.7137558486681E7","-5014967.353227","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7303 (area of use)","passing","EPSG","4326","EPSG","7303","-85.655000","40.515000","0.0","243813.829341","54323.683567","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7304","error","EPSG","4326","EPSG","7304","1.0","-1.0","0.0","5.6225473135054E7","-1.6453272058046E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7304 (area of use)","passing","EPSG","4326","EPSG","7304","-85.655000","40.515000","0.0","799912.538429","178226.951837","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7305","error","EPSG","4326","EPSG","7305","1.0","-1.0","0.0","1.72811094841E7","-4972973.101316","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7305 (area of use)","passing","EPSG","4326","EPSG","7305","-86.055000","40.165000","0.0","235314.502451","65426.794188","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7306","error","EPSG","4326","EPSG","7306","1.0","-1.0","0.0","5.6696440032418E7","-1.6315495916566E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7306 (area of use)","passing","EPSG","4326","EPSG","7306","-86.055000","40.165000","0.0","772027.663459","214654.407264","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7307","error","EPSG","4326","EPSG","7307","1.0","-1.0","0.0","1.7185277077624E7","-4939893.579411","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7307 (area of use)","passing","EPSG","4326","EPSG","7307","-85.765000","40.035000","0.0","242987.366061","78749.294984","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7308","error","EPSG","4326","EPSG","7308","1.0","-1.0","0.0","5.638202987884E7","-1.6206967518451E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7308 (area of use)","passing","EPSG","4326","EPSG","7308","-85.765000","40.035000","0.0","797201.050150","258363.311959","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7309","error","EPSG","4326","EPSG","7309","1.0","-1.0","0.0","1.7353326903063E7","-4760492.303763","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7309 (area of use)","passing","EPSG","4326","EPSG","7309","-86.085000","38.370000","0.0","245680.460104","82623.052087","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7310","error","EPSG","4326","EPSG","7310","1.0","-1.0","0.0","5.6933373347798E7","-1.5618381833262E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7310 (area of use)","passing","EPSG","4326","EPSG","7310","-86.085000","38.370000","0.0","806036.642859","271072.463390","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7311","error","EPSG","4326","EPSG","7311","1.0","-1.0","0.0","1.7019216897323E7","-4941845.063132","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7311 (area of use)","passing","EPSG","4326","EPSG","7311","-85.400000","39.930000","0.0","244274.233376","55987.737153","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7312","error","EPSG","4326","EPSG","7312","1.0","-1.0","0.0","5.5837214103969E7","-1.6213370011293E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7312 (area of use)","passing","EPSG","4326","EPSG","7312","-85.400000","39.930000","0.0","801423.047333","183686.434310","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7313","error","EPSG","4326","EPSG","7313","1.0","-1.0","0.0","1.7353395354522E7","-5026963.859686","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7313 (area of use)","passing","EPSG","4326","EPSG","7313","-86.120000","40.685000","0.0","242536.112520","73201.525045","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7314","error","EPSG","4326","EPSG","7314","1.0","-1.0","0.0","5.6933597925628E7","-1.6492630596319E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7314 (area of use)","passing","EPSG","4326","EPSG","7314","-86.120000","40.685000","0.0","795720.562493","240162.003420","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7315","error","EPSG","4326","EPSG","7315","1.0","-1.0","0.0","1.7042682560348E7","-5043039.665224","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7315 (area of use)","passing","EPSG","4326","EPSG","7315","-85.495000","40.975000","0.0","240420.849145","72092.582051","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7316","error","EPSG","4326","EPSG","7316","1.0","-1.0","0.0","5.591420103341E7","-1.6545372634989E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7316 (area of use)","passing","EPSG","4326","EPSG","7316","-85.495000","40.975000","0.0","788780.735904","236523.746278","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7317","error","EPSG","4326","EPSG","7317","1.0","-1.0","0.0","1.7256876386175E7","-4838346.274556","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7317 (area of use)","passing","EPSG","4326","EPSG","7317","-86.055000","38.900000","0.0","230891.236722","58208.063238","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7318","error","EPSG","4326","EPSG","7318","1.0","-1.0","0.0","5.6616935276975E7","-1.5873807735774E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7318 (area of use)","passing","EPSG","4326","EPSG","7318","-86.055000","38.900000","0.0","757515.665811","190970.954140","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7319","error","EPSG","4326","EPSG","7319","1.0","-1.0","0.0","1.7820325014351E7","-5092183.722245","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7319 (area of use)","passing","EPSG","4326","EPSG","7319","-87.100000","41.250000","0.0","240000.000000","97081.033411","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7320","error","EPSG","4326","EPSG","7320","1.0","-1.0","0.0","5.8465516317917E7","-1.67066060954E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7320 (area of use)","passing","EPSG","4326","EPSG","7320","-87.100000","41.250000","0.0","787400.000000","318506.690448","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7321","passing","EPSG","4326","EPSG","7321","1.0","-1.0","0.0","9565701.699931","-17869783.225139","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 7322","passing","EPSG","4326","EPSG","7322","1.0","-1.0","0.0","31383472.993858","-58627780.464477","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 7323","error","EPSG","4326","EPSG","7323","1.0","-1.0","0.0","1.6971854345882E7","-4805952.839579","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7323 (area of use)","passing","EPSG","4326","EPSG","7323","-85.445000","38.750000","0.0","231741.378446","58206.669511","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7324","error","EPSG","4326","EPSG","7324","1.0","-1.0","0.0","5.5681825466448E7","-1.5767530274518E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7324 (area of use)","passing","EPSG","4326","EPSG","7324","-85.445000","38.750000","0.0","760304.839119","190966.381554","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7325","error","EPSG","4326","EPSG","7325","1.0","-1.0","0.0","1.7185090686287E7","-4845469.6723","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7325 (area of use)","passing","EPSG","4326","EPSG","7325","-85.615000","39.000000","0.0","256026.291229","58219.552485","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7326","error","EPSG","4326","EPSG","7326","1.0","-1.0","0.0","5.6381418359926E7","-1.5897178416537E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7326 (area of use)","passing","EPSG","4326","EPSG","7326","-85.615000","39.000000","0.0","839979.590475","191008.648446","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7327","error","EPSG","4326","EPSG","7327","1.0","-1.0","0.0","1.7353395354522E7","-4910377.404406","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7327 (area of use)","passing","EPSG","4326","EPSG","7327","-86.130000","39.635000","0.0","241716.988903","73194.524229","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7328","error","EPSG","4326","EPSG","7328","1.0","-1.0","0.0","5.6933597925628E7","-1.6110129867622E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7328 (area of use)","passing","EPSG","4326","EPSG","7328","-86.130000","39.635000","0.0","793033.154426","240139.034908","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7329","error","EPSG","4326","EPSG","7329","1.0","-1.0","0.0","1.7996101784756E7","-4846833.422274","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7329 (area of use)","passing","EPSG","4326","EPSG","7329","-87.425000","38.660000","0.0","242176.018994","64862.427217","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7330","error","EPSG","4326","EPSG","7330","1.0","-1.0","0.0","5.9042210605486E7","-1.590165265291E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7330 (area of use)","passing","EPSG","4326","EPSG","7330","-87.425000","38.660000","0.0","794539.155648","212802.813296","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7331","error","EPSG","4326","EPSG","7331","1.0","-1.0","0.0","1.7019116226351E7","-5108387.760381","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7331 (area of use)","passing","EPSG","4326","EPSG","7331","-85.425000","41.515000","0.0","242086.999704","65432.637569","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7332","error","EPSG","4326","EPSG","7332","1.0","-1.0","0.0","5.5836883819286E7","-1.6759768843849E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7332 (area of use)","passing","EPSG","4326","EPSG","7332","-85.425000","41.515000","0.0","794247.098196","214673.578423","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7333","error","EPSG","4326","EPSG","7333","1.0","-1.0","0.0","1.7971023659486E7","-5100802.256602","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7333 (area of use)","passing","EPSG","4326","EPSG","7333","-87.370000","41.250000","0.0","242514.559753","97081.406385","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7334","error","EPSG","4326","EPSG","7334","1.0","-1.0","0.0","5.8959933456165E7","-1.6734882070201E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7334 (area of use)","passing","EPSG","4326","EPSG","7334","-87.370000","41.250000","0.0","795649.851456","318507.914116","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7335","error","EPSG","4326","EPSG","7335","1.0","-1.0","0.0","1.764647302465E7","-5104514.412299","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7335 (area of use)","passing","EPSG","4326","EPSG","7335","-86.700000","41.335000","0.0","244185.500720","84311.949066","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7336","error","EPSG","4326","EPSG","7336","1.0","-1.0","0.0","5.7895136915039E7","-1.6747061034351E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7336 (area of use)","passing","EPSG","4326","EPSG","7336","-86.700000","41.335000","0.0","801131.930279","276613.452895","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7337","error","EPSG","4326","EPSG","7337","1.0","-1.0","0.0","1.75236022423E7","-4881059.083851","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7337 (area of use)","passing","EPSG","4326","EPSG","7337","-86.465000","39.315000","0.0","243018.519289","76523.292941","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7338","error","EPSG","4326","EPSG","7338","1.0","-1.0","0.0","5.7492018356611E7","-1.6013941344268E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7338 (area of use)","passing","EPSG","4326","EPSG","7338","-86.465000","39.315000","0.0","797303.258702","251060.170259","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7339","error","EPSG","4326","EPSG","7339","1.0","-1.0","0.0","1.7745627054233E7","-4949146.881439","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7339 (area of use)","passing","EPSG","4326","EPSG","7339","-86.870000","39.845000","0.0","246847.142409","79860.429825","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7340","error","EPSG","4326","EPSG","7340","1.0","-1.0","0.0","5.8220444760428E7","-1.6237326060189E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7340 (area of use)","passing","EPSG","4326","EPSG","7340","-86.870000","39.845000","0.0","809864.333055","262008.760183","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7341","error","EPSG","4326","EPSG","7341","1.0","-1.0","0.0","1.7720703733488E7","-4914403.332447","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7341 (area of use)","passing","EPSG","4326","EPSG","7341","-86.845000","39.320000","0.0","244743.040413","54875.328027","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7342","error","EPSG","4326","EPSG","7342","1.0","-1.0","0.0","5.8138675498951E7","-1.6123338266535E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7342 (area of use)","passing","EPSG","4326","EPSG","7342","-86.845000","39.320000","0.0","802961.125090","180036.805370","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7343","error","EPSG","4326","EPSG","7343","1.0","-1.0","0.0","1.7945723569145E7","-4977190.42251","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7343 (area of use)","passing","EPSG","4326","EPSG","7343","-87.270000","39.875000","0.0","246844.099896","66536.873046","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7344","error","EPSG","4326","EPSG","7344","1.0","-1.0","0.0","5.8876928076436E7","-1.6329332244518E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7344 (area of use)","passing","EPSG","4326","EPSG","7344","-87.270000","39.875000","0.0","809854.351074","218296.390986","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7345","error","EPSG","4326","EPSG","7345","1.0","-1.0","0.0","1.762168808651E7","-4758906.960034","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7345 (area of use)","passing","EPSG","4326","EPSG","7345","-86.625000","38.055000","0.0","246582.643782","64306.973738","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7346","error","EPSG","4326","EPSG","7346","1.0","-1.0","0.0","5.7813821663825E7","-1.5613180584711E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7346 (area of use)","passing","EPSG","4326","EPSG","7346","-86.625000","38.055000","0.0","808996.557142","210980.463006","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7347","error","EPSG","4326","EPSG","7347","1.0","-1.0","0.0","1.7920414719611E7","-4781441.184756","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7347 (area of use)","passing","EPSG","4326","EPSG","7347","-87.245000","38.215000","0.0","244816.720096","76515.976683","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7348","error","EPSG","4326","EPSG","7348","1.0","-1.0","0.0","5.8793893959258E7","-1.568711162032E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7348 (area of use)","passing","EPSG","4326","EPSG","7348","-87.245000","38.215000","0.0","803202.855848","251036.166835","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7349","error","EPSG","4326","EPSG","7349","1.0","-1.0","0.0","1.8251246793074E7","-4789412.663278","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7349 (area of use)","passing","EPSG","4326","EPSG","7349","-87.890000","38.005000","0.0","245269.658574","64305.577734","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7350","error","EPSG","4326","EPSG","7350","1.0","-1.0","0.0","5.9879298853611E7","-1.5713264712773E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7350 (area of use)","passing","EPSG","4326","EPSG","7350","-87.890000","38.005000","0.0","804688.871505","210975.882950","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7351","passing","EPSG","4326","EPSG","7351","1.0","-1.0","0.0","7345571.377765","-18492576.012079","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 7352","passing","EPSG","4326","EPSG","7352","1.0","-1.0","0.0","24099595.428550","-60671059.799630","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 7353","passing","EPSG","4326","EPSG","7353","1.0","-1.0","0.0","-10892059.874320","-20748670.840422","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 7354","passing","EPSG","4326","EPSG","7354","1.0","-1.0","0.0","-35735033.104332","-68072930.915617","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 7355","error","EPSG","4326","EPSG","7355","1.0","-1.0","0.0","1.7233025322141E7","-4903661.963033","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7355 (area of use)","passing","EPSG","4326","EPSG","7355","-85.790000","39.520000","0.0","249459.048762","60431.640558","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7356","error","EPSG","4326","EPSG","7356","1.0","-1.0","0.0","5.6538683911057E7","-1.6088097623716E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7356 (area of use)","passing","EPSG","4326","EPSG","7356","-85.790000","39.520000","0.0","818433.562479","198266.140730","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7357","error","EPSG","4326","EPSG","7357","1.0","-1.0","0.0","1.7795130631267E7","-4763180.715586","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7357 (area of use)","passing","EPSG","4326","EPSG","7357","-87.015000","37.995000","0.0","243074.387933","63194.504870","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7358","error","EPSG","4326","EPSG","7358","1.0","-1.0","0.0","5.8382857746082E7","-1.5627202064386E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7358 (area of use)","passing","EPSG","4326","EPSG","7358","-87.015000","37.995000","0.0","797486.554411","207330.638061","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7359","passing","EPSG","4326","EPSG","7359","1.0","-1.0","0.0","9565729.675973","-18003104.782127","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 7360","passing","EPSG","4326","EPSG","7360","1.0","-1.0","0.0","31383564.778589","-59065186.272696","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 7361","error","EPSG","4326","EPSG","7361","1.0","-1.0","0.0","1.8021454769327E7","-4903803.960871","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7361 (area of use)","passing","EPSG","4326","EPSG","7361","-87.450000","39.080000","0.0","244326.512174","55984.282070","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7362","error","EPSG","4326","EPSG","7362","1.0","-1.0","0.0","5.9125389522367E7","-1.6088563494957E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7362 (area of use)","passing","EPSG","4326","EPSG","7362","-87.450000","39.080000","0.0","801594.565356","183675.098757","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7363","error","EPSG","4326","EPSG","7363","1.0","-1.0","0.0","1.7720703733488E7","-5030986.183175","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7363 (area of use)","passing","EPSG","4326","EPSG","7363","-86.840000","40.565000","0.0","245081.285899","76533.111297","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7364","error","EPSG","4326","EPSG","7364","1.0","-1.0","0.0","5.8138675498951E7","-1.6505827169299E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7364 (area of use)","passing","EPSG","4326","EPSG","7364","-86.840000","40.565000","0.0","804070.852152","251092.382646","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7365","error","EPSG","4326","EPSG","7365","1.0","-1.0","0.0","1.8046780981103E7","-4783148.308523","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7365 (area of use)","passing","EPSG","4326","EPSG","7365","-87.575000","37.995000","0.0","237804.006439","57644.554528","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7366","error","EPSG","4326","EPSG","7366","1.0","-1.0","0.0","5.9208480602167E7","-1.5692712408878E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7366 (area of use)","passing","EPSG","4326","EPSG","7366","-87.575000","37.995000","0.0","780195.311127","189122.175981","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7367","error","EPSG","4326","EPSG","7367","1.0","-1.0","0.0","1.7996190563933E7","-4941220.049584","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7367 (area of use)","passing","EPSG","4326","EPSG","7367","-87.410000","39.430000","0.0","243444.054291","55985.119180","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7368","error","EPSG","4326","EPSG","7368","1.0","-1.0","0.0","5.904250187517E7","-1.6211319446011E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7368 (area of use)","passing","EPSG","4326","EPSG","7368","-87.410000","39.430000","0.0","798699.368121","183677.845176","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7369","passing","EPSG","4326","EPSG","7369","1.0","-1.0","0.0","-6028132.802076","-20748544.100773","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 7370","passing","EPSG","4326","EPSG","7370","1.0","-1.0","0.0","-19777299.034811","-68072515.103952","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 7374","passing","EPSG","4326","EPSG","7374","1.0","-1.0","0.0","-5950996.913984","-172760.344418","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -2741,80 +2951,110 @@ "4326 -> 7376","passing","EPSG","4326","EPSG","7376","1.0","-1.0","0.0","-8380117.510219","-238225.04224","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7531","passing","EPSG","4326","EPSG","7531","1.0","-1.0","0.0","1.1190112147958E7","1530786.971195","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7532","error","EPSG","4326","EPSG","7532","1.0","-1.0","0.0","1.8068738062346E7","-5405325.102896","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7532 (area of use)","passing","EPSG","4326","EPSG","7532","-88.010000","44.460000","0.0","30804.144910","166819.476117","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7534","passing","EPSG","4326","EPSG","7534","1.0","-1.0","0.0","1.1078850667895E7","1601602.398222","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7535","error","EPSG","4326","EPSG","7535","1.0","-1.0","0.0","1.8542208569864E7","-5394002.064049","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7535 (area of use)","passing","EPSG","4326","EPSG","7535","-88.465000","44.070000","0.0","247558.883832","150052.208673","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7536","passing","EPSG","4326","EPSG","7536","1.0","-1.0","0.0","1.0977994425237E7","1401818.292327","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7538","passing","EPSG","4326","EPSG","7538","1.0","-1.0","0.0","1.091632640974E7","1181450.947617","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7539","passing","EPSG","4326","EPSG","7539","1.0","-1.0","0.0","1.0956536596367E7","1316796.284171","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7540","passing","EPSG","4326","EPSG","7540","1.0","-1.0","0.0","1.0983782944479E7","1211167.323239","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7541","error","EPSG","4326","EPSG","7541","1.0","-1.0","0.0","1.8705963112563E7","-5264035.313775","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7541 (area of use)","passing","EPSG","4326","EPSG","7541","-88.710000","43.240000","0.0","268627.396803","196373.992331","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7542","error","EPSG","4326","EPSG","7542","1.0","-1.0","0.0","1.7825309517877E7","-5544092.881851","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7542 (area of use)","passing","EPSG","4326","EPSG","7542","-87.270000","45.050000","0.0","158976.183614","72233.521693","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7545","passing","EPSG","4326","EPSG","7545","1.0","-1.0","0.0","1.1034499781635E7","1445837.029539","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7546","error","EPSG","4326","EPSG","7546","1.0","-1.0","0.0","1.824452591018E7","-5685394.690762","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7546 (area of use)","passing","EPSG","4326","EPSG","7546","-88.370000","45.870000","0.0","115772.860711","47943.666610","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7547","error","EPSG","4326","EPSG","7547","1.0","-1.0","0.0","1.8644160382754E7","-5541231.771574","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7547 (area of use)","passing","EPSG","4326","EPSG","7547","-88.735000","45.725000","0.0","267929.661342","191098.295715","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7549","passing","EPSG","4326","EPSG","7549","1.0","-1.0","0.0","1.0921959998346E7","1153425.415057","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7550","passing","EPSG","4326","EPSG","7550","1.0","-1.0","0.0","1.0898807238793E7","1136900.194202","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7554","error","EPSG","4326","EPSG","7554","1.0","-1.0","0.0","1.8168835296623E7","-5319784.333141","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7554 (area of use)","passing","EPSG","4326","EPSG","7554","-88.030000","43.020000","0.0","174878.338587","89249.774104","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7555","error","EPSG","4326","EPSG","7555","1.0","-1.0","0.0","1.7886787790146E7","-5426249.036351","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7555 (area of use)","passing","EPSG","4326","EPSG","7555","-87.770000","44.110000","0.0","62244.619205","93725.255326","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7557","passing","EPSG","4326","EPSG","7557","1.0","-1.0","0.0","1.0977969046496E7","1164095.943563","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7559","passing","EPSG","4326","EPSG","7559","1.0","-1.0","0.0","1.089361331296E7","1206629.077554","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7560","error","EPSG","4326","EPSG","7560","1.0","-1.0","0.0","1.8127615935467E7","-5589318.461061","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7560 (area of use)","passing","EPSG","4326","EPSG","7560","-87.955000","45.380000","0.0","219556.098021","76526.928599","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7561","error","EPSG","4326","EPSG","7561","1.0","-1.0","0.0","1.8359375027934E7","-5613393.412737","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7561 (area of use)","passing","EPSG","4326","EPSG","7561","-88.735000","44.985000","0.0","80353.977763","29869.967801","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7562","passing","EPSG","4326","EPSG","7562","1.0","-1.0","0.0","1.1051590142266E7","1367198.859196","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7563","error","EPSG","4326","EPSG","7563","1.0","-1.0","0.0","1.8172883085444E7","-5562448.390228","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7563 (area of use)","passing","EPSG","4326","EPSG","7563","-88.225000","45.025000","0.0","157922.472111","69812.962623","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7564","passing","EPSG","4326","EPSG","7564","1.0","-1.0","0.0","1.0901549209526E7","1196607.494278","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7565","passing","EPSG","4326","EPSG","7565","1.0","-1.0","0.0","1.1133309243073E7","1559758.743052","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7567","passing","EPSG","4326","EPSG","7567","1.0","-1.0","0.0","1.0841630010083E7","1154965.000842","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7569","passing","EPSG","4326","EPSG","7569","1.0","-1.0","0.0","1.1015074626063E7","1334708.953985","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7573","passing","EPSG","4326","EPSG","7573","1.0","-1.0","0.0","1.1152095260838E7","1478472.516608","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7574","error","EPSG","4326","EPSG","7574","1.0","-1.0","0.0","1.8615461118325E7","-5543570.332176","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7574 (area of use)","passing","EPSG","4326","EPSG","7574","-88.735000","44.805000","0.0","252192.151520","85450.192265","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7576","passing","EPSG","4326","EPSG","7576","1.0","-1.0","0.0","1.1060695551366E7","1361394.692708","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7578","passing","EPSG","4326","EPSG","7578","1.0","-1.0","0.0","1.1066110497508E7","1300357.746857","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7579","passing","EPSG","4326","EPSG","7579","1.0","-1.0","0.0","1.0975190491794E7","1189767.397438","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7580","passing","EPSG","4326","EPSG","7580","1.0","-1.0","0.0","1.0894789921715E7","1055137.646596","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7581","passing","EPSG","4326","EPSG","7581","1.0","-1.0","0.0","1.1211195182485E7","1639299.045375","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7582","error","EPSG","4326","EPSG","7582","1.0","-1.0","0.0","1.8190531639855E7","-5402833.866323","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7582 (area of use)","passing","EPSG","4326","EPSG","7582","-88.225000","43.370000","0.0","107032.898166","50223.501211","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7583","error","EPSG","4326","EPSG","7583","1.0","-1.0","0.0","1.8362696783023E7","-5368959.457174","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7583 (area of use)","passing","EPSG","4326","EPSG","7583","-88.305000","43.020000","0.0","202267.030839","50056.490476","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7584","error","EPSG","4326","EPSG","7584","1.0","-1.0","0.0","1.8649706305111E7","-5481735.214879","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7584 (area of use)","passing","EPSG","4326","EPSG","7584","-88.915000","44.465000","0.0","177188.625778","116088.843612","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7585","passing","EPSG","4326","EPSG","7585","1.0","-1.0","0.0","1.0878149265866E7","1109476.147171","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7586","passing","EPSG","4326","EPSG","7586","1.0","-1.0","0.0","1.1024895986121E7","1304229.146808","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7590","passing","EPSG","4326","EPSG","7590","1.0","-1.0","0.0","3.6712892938776E7","5022256.92089","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7591","error","EPSG","4326","EPSG","7591","1.0","-1.0","0.0","5.928051812588E7","-1.7733970775418E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7591 (area of use)","passing","EPSG","4326","EPSG","7591","-88.010000","44.460000","0.0","101063.265091","547306.897562","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7593","passing","EPSG","4326","EPSG","7593","1.0","-1.0","0.0","3.6347862566617E7","5254590.534477","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7594","error","EPSG","4326","EPSG","7594","1.0","-1.0","0.0","6.0833895949316E7","-1.7696821771876E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7594 (area of use)","passing","EPSG","4326","EPSG","7594","-88.465000","44.070000","0.0","812199.437728","492296.287878","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7595","passing","EPSG","4326","EPSG","7595","1.0","-1.0","0.0","3.6016970043766E7","4599132.180392","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7597","passing","EPSG","4326","EPSG","7597","1.0","-1.0","0.0","3.5814647562374E7","3876143.651009","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7598","passing","EPSG","4326","EPSG","7598","1.0","-1.0","0.0","3.5946570483187E7","4320189.142789","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7599","passing","EPSG","4326","EPSG","7599","1.0","-1.0","0.0","3.6035961210301E7","3973638.126448","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7600","error","EPSG","4326","EPSG","7600","1.0","-1.0","0.0","6.1371147312097E7","-1.7270422525212E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7600 (area of use)","passing","EPSG","4326","EPSG","7600","-88.710000","43.240000","0.0","881321.717976","644270.339905","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7601","error","EPSG","4326","EPSG","7601","1.0","-1.0","0.0","5.8481869643241E7","-1.818924472942E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7601 (area of use)","passing","EPSG","4326","EPSG","7601","-87.270000","45.050000","0.0","521574.362415","236986.146210","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7604","passing","EPSG","4326","EPSG","7604","1.0","-1.0","0.0","3.6202354700193E7","4743550.321085","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7605","error","EPSG","4326","EPSG","7605","1.0","-1.0","0.0","5.9857248756735E7","-1.8652832414276E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7605 (area of use)","passing","EPSG","4326","EPSG","7605","-88.370000","45.870000","0.0","379831.460270","157295.179868","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7606","error","EPSG","4326","EPSG","7606","1.0","-1.0","0.0","6.1168382855468E7","-1.8179857903415E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7606 (area of use)","passing","EPSG","4326","EPSG","7606","-88.735000","45.725000","0.0","879032.563634","626961.659015","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7608","passing","EPSG","4326","EPSG","7608","1.0","-1.0","0.0","3.583313042744E7","3784196.549706","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7609","passing","EPSG","4326","EPSG","7609","1.0","-1.0","0.0","3.5757170082451E7","3729980.0534","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7613","error","EPSG","4326","EPSG","7613","1.0","-1.0","0.0","5.9608920468909E7","-1.7453325766266E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7613 (area of use)","passing","EPSG","4326","EPSG","7613","-88.030000","43.020000","0.0","573746.682421","292813.633919","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7614","error","EPSG","4326","EPSG","7614","1.0","-1.0","0.0","5.8683569608645E7","-1.7802618713364E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7614 (area of use)","passing","EPSG","4326","EPSG","7614","-87.770000","44.110000","0.0","204214.221982","307496.941911","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7616","passing","EPSG","4326","EPSG","7616","1.0","-1.0","0.0","3.6016886779555E7","3819204.774775","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7618","passing","EPSG","4326","EPSG","7618","1.0","-1.0","0.0","3.5740129677774E7","3958748.898787","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7619","error","EPSG","4326","EPSG","7619","1.0","-1.0","0.0","5.9473686615113E7","-1.8337622318165E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7619 (area of use)","passing","EPSG","4326","EPSG","7619","-87.955000","45.380000","0.0","720326.965091","251072.097746","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7620","error","EPSG","4326","EPSG","7620","1.0","-1.0","0.0","6.023404957095E7","-1.8416608221135E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7620 (area of use)","passing","EPSG","4326","EPSG","7620","-88.735000","44.985000","0.0","263628.008846","97998.386514","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7621","passing","EPSG","4326","EPSG","7621","1.0","-1.0","0.0","3.6258425325223E7","4485551.590817","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7622","error","EPSG","4326","EPSG","7622","1.0","-1.0","0.0","5.9622200589461E7","-1.8249466093434E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7622 (area of use)","passing","EPSG","4326","EPSG","7622","-88.225000","45.025000","0.0","518117.310550","229044.695044","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7623","passing","EPSG","4326","EPSG","7623","1.0","-1.0","0.0","3.5766166031941E7","3925869.754627","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7624","passing","EPSG","4326","EPSG","7624","1.0","-1.0","0.0","3.6526532074591E7","5117308.476595","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7626","passing","EPSG","4326","EPSG","7626","1.0","-1.0","0.0","3.5569581124671E7","3789247.673768","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7628","passing","EPSG","4326","EPSG","7628","1.0","-1.0","0.0","3.6138624002259E7","4378957.627027","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7632","passing","EPSG","4326","EPSG","7632","1.0","-1.0","0.0","3.6588165868697E7","4850621.915133","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7633","error","EPSG","4326","EPSG","7633","1.0","-1.0","0.0","6.1074225351948E7","-1.8187530331976E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7633 (area of use)","passing","EPSG","4326","EPSG","7633","-88.735000","44.805000","0.0","827400.416689","280347.838626","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7635","passing","EPSG","4326","EPSG","7635","1.0","-1.0","0.0","3.628829865443E7","4466509.087483","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7637","passing","EPSG","4326","EPSG","7637","1.0","-1.0","0.0","3.6306064190276E7","4266257.041641","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7638","passing","EPSG","4326","EPSG","7638","1.0","-1.0","0.0","3.6007770804944E7","3903428.536661","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7639","passing","EPSG","4326","EPSG","7639","1.0","-1.0","0.0","3.574398993491E7","3461730.762217","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7640","passing","EPSG","4326","EPSG","7640","1.0","-1.0","0.0","3.6782062861118E7","5378266.951837","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7641","error","EPSG","4326","EPSG","7641","1.0","-1.0","0.0","5.9680102554768E7","-1.7725797442939E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7641 (area of use)","passing","EPSG","4326","EPSG","7641","-88.225000","43.370000","0.0","351157.099744","164774.937047","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7642","error","EPSG","4326","EPSG","7642","1.0","-1.0","0.0","6.0244947695246E7","-1.7614661152565E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7642 (area of use)","passing","EPSG","4326","EPSG","7642","-88.305000","43.020000","0.0","663604.416624","164227.002350","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7643","error","EPSG","4326","EPSG","7643","1.0","-1.0","0.0","6.1186578102823E7","-1.7984659617449E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 7643 (area of use)","passing","EPSG","4326","EPSG","7643","-88.915000","44.465000","0.0","581326.349879","380868.147784","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 7644","passing","EPSG","4326","EPSG","7644","1.0","-1.0","0.0","3.5689394716373E7","3640006.326509","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 7645","passing","EPSG","4326","EPSG","7645","1.0","-1.0","0.0","3.6170846247706E7","4278958.458903","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 20004","passing","EPSG","4326","EPSG","20004","1.0","-1.0","0.0","2227107.025692","-117636.520838","-130.197731","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" @@ -3056,6 +3296,7 @@ "4326 -> 24881","passing","EPSG","4326","EPSG","24881","1.0","-1.0","0.0","8480440.543715","9790361.366291","27.338005","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 24882","passing","EPSG","4326","EPSG","24882","1.0","-1.0","0.0","7306356.17686","9820113.938509","27.338005","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 24891","error","EPSG","4326","EPSG","24891","1.0","-1.0","0.0","1.4848936620636E7","1628308.684297","27.338005","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 24891 (area of use)","passing","EPSG","4326","EPSG","24891","-80.205000","-5.850000","0.0","254919.436360","1443789.413814","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 24892","passing","EPSG","4326","EPSG","24892","1.0","-1.0","0.0","14741014.229783","1565493.907259","27.338005","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 24893","passing","EPSG","4326","EPSG","24893","1.0","-1.0","0.0","12969033.702642","1732192.150950","27.338005","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 25000","passing","EPSG","4326","EPSG","25000","1.0","-1.0","0.0","496887.062684","-626826.645772","23.779236","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -3111,7 +3352,9 @@ "4326 -> 26721","passing","EPSG","4326","EPSG","26721","1.0","-1.0","0.0","8480669.194096","-210363.755277","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26722","passing","EPSG","4326","EPSG","26722","1.0","-1.0","0.0","7306518.373057","-180502.617512","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26729","error","EPSG","4326","EPSG","26729","1.0","-1.0","0.0","5.6145655363248E7","-1.2995986809758E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26729 (area of use)","passing","EPSG","4326","EPSG","26729","-85.840000","32.995000","0.0","497955.892200","907582.227639","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, the datum uses NAD27 grids, so PROJ 9.6.0 was verified on the projection alone" "4326 -> 26730","error","EPSG","4326","EPSG","26730","1.0","-1.0","0.0","5.8836323074223E7","-1.2966005846089E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26730 (area of use)","passing","EPSG","4326","EPSG","26730","-87.390000","32.580000","0.0","533883.856158","938426.417081","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, the datum uses NAD27 grids, so PROJ 9.6.0 was verified on the projection alone" "4326 -> 26731","passing","EPSG","4326","EPSG","26731","1.0","-1.0","0.0","6.9883986607415E7","-3.2630755864469E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26740","passing","EPSG","4326","EPSG","26740","1.0","-1.0","0.0","2.7043968269598E7","4.6315083833813E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26741","passing","EPSG","4326","EPSG","26741","1.0","-1.0","0.0","4.2205997155026E7","1.8012144037188E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" @@ -3129,13 +3372,20 @@ "4326 -> 26756","passing","EPSG","4326","EPSG","26756","1.0","-1.0","0.0","3.1127463220573E7","-2715820.225578","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26757","passing","EPSG","4326","EPSG","26757","1.0","-1.0","0.0","45552343.540000","-15447737.780000","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed for the exact Transverse Mercator: the datum uses NAD27 grids so PROJ cannot be invoked directly, but the shift matches PROJ 9.6.0 exact-minus-approx exactly" "4326 -> 26758","error","EPSG","4326","EPSG","26758","1.0","-1.0","0.0","4.9155553283185E7","-1.0385262046215E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26758 (area of use)","passing","EPSG","4326","EPSG","26758","-81.150000","27.620000","0.0","451426.829950","1194534.196113","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, the datum uses NAD27 grids, so PROJ 9.6.0 was verified on the projection alone" "4326 -> 26759","error","EPSG","4326","EPSG","26759","1.0","-1.0","0.0","5.0509131826688E7","-1.0453563941181E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26759 (area of use)","passing","EPSG","4326","EPSG","26759","-82.235000","27.935000","0.0","424120.850836","1309090.388991","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, the datum uses NAD27 grids, so PROJ 9.6.0 was verified on the projection alone" "4326 -> 26760","passing","EPSG","4326","EPSG","26760","1.0","-1.0","0.0","3.4646452420898E7","1404169.449621","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26766","error","EPSG","4326","EPSG","26766","1.0","-1.0","0.0","5.0737109978708E7","-1.2524656032261E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26766 (area of use)","passing","EPSG","4326","EPSG","26766","-82.120000","32.520000","0.0","514384.052156","916553.669936","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, the datum uses NAD27 grids, so PROJ 9.6.0 was verified on the projection alone" "4326 -> 26767","error","EPSG","4326","EPSG","26767","1.0","-1.0","0.0","5.3601248462724E7","-1.267475266923E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26767 (area of use)","passing","EPSG","4326","EPSG","26767","-84.300000","32.815000","0.0","459037.495858","1023894.956991","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, the datum uses NAD27 grids, so PROJ 9.6.0 was verified on the projection alone" "4326 -> 26771","error","EPSG","4326","EPSG","26771","1.0","-1.0","0.0","6.0244842616108E7","-1.54738646582E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26771 (area of use)","passing","EPSG","4326","EPSG","26771","-88.145000","39.780000","0.0","552933.051450","1133801.647984","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, the datum uses NAD27 grids, so PROJ 9.6.0 was verified on the projection alone" "4326 -> 26773","error","EPSG","4326","EPSG","26773","1.0","-1.0","0.0","5.5885278945107E7","-1.5528898014295E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26773 (area of use)","passing","EPSG","4326","EPSG","26773","-85.685000","39.860000","0.0","494853.240772","859474.485293","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, the datum uses NAD27 grids, so PROJ 9.6.0 was verified on the projection alone" "4326 -> 26774","error","EPSG","4326","EPSG","26774","1.0","-1.0","0.0","5.8150474855673E7","-1.5656164628607E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26774 (area of use)","passing","EPSG","4326","EPSG","26774","-87.170000","39.770000","0.0","475638.111976","826702.728196","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, the datum uses NAD27 grids, so PROJ 9.6.0 was verified on the projection alone" "4326 -> 26775","passing","EPSG","4326","EPSG","26775","1.0","-1.0","0.0","3.8068422645457E7","5607218.965398","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26776","passing","EPSG","4326","EPSG","26776","1.0","-1.0","0.0","3.7959530318017E7","5452665.763952","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26777","passing","EPSG","4326","EPSG","26777","1.0","-1.0","0.0","3.8815684857611E7","6927215.615378","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" @@ -3153,10 +3403,14 @@ "4326 -> 26792","passing","EPSG","4326","EPSG","26792","1.0","-1.0","0.0","3.8502243606626E7","6410399.862474","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26793","passing","EPSG","4326","EPSG","26793","1.0","-1.0","0.0","3.8309278022663E7","6152997.378982","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26794","error","EPSG","4326","EPSG","26794","1.0","-1.0","0.0","6.1107573573838E7","-1.2977517602793E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26794 (area of use)","passing","EPSG","4326","EPSG","26794","-89.030000","32.510000","0.0","439371.096874","1034240.546186","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, the datum uses NAD27 grids, so PROJ 9.6.0 was verified on the projection alone" "4326 -> 26799","passing","EPSG","4326","EPSG","26799","1.0","-1.0","0.0","4.5091438891236E7","1.7671313735304E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26801","error","EPSG","4326","EPSG","26801","1.0","-1.0","0.0","5.2871091546248E7","-1.682277689412E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26801 (area of use)","passing","EPSG","4326","EPSG","26801","-83.500000","43.865000","0.0","543956.947631","861956.823451","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 26802","error","EPSG","4326","EPSG","26802","1.0","-1.0","0.0","5.6014388722888E7","-1.6992722822314E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26802 (area of use)","passing","EPSG","4326","EPSG","26802","-86.105000","43.930000","0.0","406476.632913","885777.658515","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 26803","error","EPSG","4326","EPSG","26803","1.0","-1.0","0.0","6.096180824357E7","-1.727598315855E7","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26803 (area of use)","passing","EPSG","4326","EPSG","26803","-86.930000","46.705000","0.0","956618.228711","1902630.038312","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 26811","passing","EPSG","4326","EPSG","26811","1.0","-1.0","0.0","3.7056411031157E7","3191471.839061","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26812","passing","EPSG","4326","EPSG","26812","1.0","-1.0","0.0","3.6262663298794E7","2035914.592439","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26813","passing","EPSG","4326","EPSG","26813","1.0","-1.0","0.0","3.5985167577355E7","1892503.899742","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" @@ -3209,9 +3463,13 @@ "4326 -> 26869","passing","EPSG","4326","EPSG","26869","1.0","-1.0","0.0","3.4205377548515E7","-74534.697525","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26870","passing","EPSG","4326","EPSG","26870","1.0","-1.0","0.0","3.4441295536315E7","483735.368313","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database" "4326 -> 26891","error","EPSG","4326","EPSG","26891","1.0","-1.0","0.0","1.5757736995238E7","-505151.848614","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26891 (area of use)","passing","EPSG","4326","EPSG","26891","-82.300000","43.835000","0.0","320884.019852","4855023.008697","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 26892","error","EPSG","4326","EPSG","26892","1.0","-1.0","0.0","1.5133700109056E7","-473481.699571","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26892 (area of use)","passing","EPSG","4326","EPSG","26892","-81.000000","50.605000","0.0","304800.000000","5607583.333826","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 26893","error","EPSG","4326","EPSG","26893","1.0","-1.0","0.0","1.6414214001085E7","-539612.639806","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26893 (area of use)","passing","EPSG","4326","EPSG","26893","-84.000000","50.795000","0.0","304800.000000","5628717.300182","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 26894","error","EPSG","4326","EPSG","26894","1.0","-1.0","0.0","1.7833009909167E7","-617882.974409","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26894 (area of use)","passing","EPSG","4326","EPSG","26894","-87.000000","51.935000","0.0","304800.000000","5755535.600947","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 26898","passing","EPSG","4326","EPSG","26898","1.0","-1.0","0.0","7485122.173446","-189281.454101","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 26899","passing","EPSG","4326","EPSG","26899","1.0","-1.0","0.0","8078826.347523","-204602.141116","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 26901","passing","EPSG","4326","EPSG","26901","1.0","-1.0","0.0","722561.736479","-1.9885331913357E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -3236,7 +3494,9 @@ "4326 -> 26922","passing","EPSG","4326","EPSG","26922","1.0","-1.0","0.0","7306321.314799","-180502.818931","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26923","passing","EPSG","4326","EPSG","26923","1.0","-1.0","0.0","6282890.195008","-159676.099533","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26929","error","EPSG","4326","EPSG","26929","1.0","-1.0","0.0","1.7159919726823E7","-3961313.962369","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26929 (area of use)","passing","EPSG","4326","EPSG","26929","-85.840000","32.995000","0.0","199376.968351","276640.741826","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 26930","error","EPSG","4326","EPSG","26930","1.0","-1.0","0.0","1.8379967073642E7","-3952167.354801","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26930 (area of use)","passing","EPSG","4326","EPSG","26930","-87.390000","32.580000","0.0","610327.596204","286042.606823","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 26931","passing","EPSG","4326","EPSG","26931","1.0","-1.0","0.0","2.1299477541839E7","-9945672.888623","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26940","passing","EPSG","4326","EPSG","26940","1.0","-1.0","0.0","8328717.21702","1.4116821977524E7","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26941","passing","EPSG","4326","EPSG","26941","1.0","-1.0","0.0","1.4254884235227E7","5989905.116896","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -3253,13 +3513,20 @@ "4326 -> 26956","passing","EPSG","4326","EPSG","26956","1.0","-1.0","0.0","9609648.833132","-675630.039935","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26957","passing","EPSG","4326","EPSG","26957","1.0","-1.0","0.0","13929727.098412","-4708319.149141","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 26958","error","EPSG","4326","EPSG","26958","1.0","-1.0","0.0","1.5029510779743E7","-3165551.699573","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26958 (area of use)","passing","EPSG","4326","EPSG","26958","-81.150000","27.620000","0.0","185195.147599","364110.217140","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 26959","error","EPSG","4326","EPSG","26959","1.0","-1.0","0.0","1.5442048203015E7","-3186367.239404","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26959 (area of use)","passing","EPSG","4326","EPSG","26959","-82.235000","27.935000","0.0","176872.429518","399028.398821","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 26960","passing","EPSG","4326","EPSG","26960","1.0","-1.0","0.0","1.0550650155667E7","427782.799905","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26966","error","EPSG","4326","EPSG","26966","1.0","-1.0","0.0","1.5511530289253E7","-3817662.34613","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26966 (area of use)","passing","EPSG","4326","EPSG","26966","-82.120000","32.520000","0.0","204384.173012","279375.569802","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 26967","error","EPSG","4326","EPSG","26967","1.0","-1.0","0.0","1.6884448431364E7","-3863405.498204","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26967 (area of use)","passing","EPSG","4326","EPSG","26967","-84.300000","32.815000","0.0","687514.876067","312094.285728","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 26971","error","EPSG","4326","EPSG","26971","1.0","-1.0","0.0","1.8509247999883E7","-4716583.113964","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26971 (area of use)","passing","EPSG","4326","EPSG","26971","-88.145000","39.780000","0.0","316133.604813","345590.735006","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 26973","error","EPSG","4326","EPSG","26973","1.0","-1.0","0.0","1.6980563567191E7","-4483369.918208","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26973 (area of use)","passing","EPSG","4326","EPSG","26973","-85.685000","39.860000","0.0","98431.305717","511973.655618","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 26974","error","EPSG","4326","EPSG","26974","1.0","-1.0","0.0","1.8470937971857E7","-4522155.488717","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26974 (area of use)","passing","EPSG","4326","EPSG","26974","-87.170000","39.770000","0.0","892574.675639","501984.623192","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 26975","passing","EPSG","4326","EPSG","26975","1.0","-1.0","0.0","1.2493754958641E7","2708853.657912","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26976","passing","EPSG","4326","EPSG","26976","1.0","-1.0","0.0","1.1460553625321E7","1661745.543903","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26977","passing","EPSG","4326","EPSG","26977","1.0","-1.0","0.0","1.1621497257386E7","2111191.990303","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -3280,6 +3547,7 @@ "4326 -> 26992","passing","EPSG","4326","EPSG","26992","1.0","-1.0","0.0","1.192601192142E7","2053668.621498","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26993","passing","EPSG","4326","EPSG","26993","1.0","-1.0","0.0","1.1867181831423E7","1975209.580327","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 26994","error","EPSG","4326","EPSG","26994","1.0","-1.0","0.0","1.8772001648449E7","-3937156.383224","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 26994 (area of use)","passing","EPSG","4326","EPSG","26994","-89.030000","32.510000","0.0","281520.857869","333718.072514","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 27037","passing","EPSG","4326","EPSG","27037","1.0","-1.0","0.0","-4079506.784381","-141028.903381","146.270504","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 27038","passing","EPSG","4326","EPSG","27038","1.0","-1.0","0.0","-4967147.432985","-154658.185173","146.270504","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 27039","passing","EPSG","4326","EPSG","27039","1.0","-1.0","0.0","-5951010.944853","-173360.355794","146.270504","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -3571,9 +3839,13 @@ "4326 -> 32061","passing","EPSG","4326","EPSG","32061","1.0","-1.0","0.0","1.0783926462388E7","704636.324128","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 32062","passing","EPSG","4326","EPSG","32062","1.0","-1.0","0.0","1.0763376809751E7","678709.100228","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 32066","error","EPSG","4326","EPSG","32066","1.0","-1.0","0.0","5.9133441231533E7","-2026750.559125","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 32066 (area of use)","passing","EPSG","4326","EPSG","32066","-86.960000","36.135000","0.0","1652224.508319","13119140.377630","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, the datum uses NAD27 grids, so PROJ 9.6.0 was verified on the projection alone" "4326 -> 32067","error","EPSG","4326","EPSG","32067","1.0","-1.0","0.0","5.0279368820954E7","-1553070.176234","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 32067 (area of use)","passing","EPSG","4326","EPSG","32067","-81.040000","34.970000","0.0","1628436.765006","12695248.374406","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, the datum uses NAD27 grids, so PROJ 9.6.0 was verified on the projection alone" "4326 -> 32076","error","EPSG","4326","EPSG","32076","1.0","-1.0","0.0","5.9133441231533E7","-2026750.559125","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 32076 (area of use)","passing","EPSG","4326","EPSG","32076","-86.960000","27.100000","0.0","1653425.715412","9833786.701318","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, the datum uses NAD27 grids, so PROJ 9.6.0 was verified on the projection alone" "4326 -> 32077","error","EPSG","4326","EPSG","32077","1.0","-1.0","0.0","5.0279368820954E7","-1553070.176234","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 32077 (area of use)","passing","EPSG","4326","EPSG","32077","-82.630000","26.880000","0.0","1109223.307842","9757260.687456","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, the datum uses NAD27 grids, so PROJ 9.6.0 was verified on the projection alone" "4326 -> 32081","passing","EPSG","4326","EPSG","32081","1.0","-1.0","0.0","7485348.460000","-189283.139900","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed for the exact Transverse Mercator: the datum uses NAD27 grids so PROJ cannot be invoked directly, but the shift matches PROJ 9.6.0 exact-minus-approx exactly" "4326 -> 32082","passing","EPSG","4326","EPSG","32082","1.0","-1.0","0.0","8079107.588000","-204607.811100","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed for the exact Transverse Mercator: the datum uses NAD27 grids so PROJ cannot be invoked directly, but the shift matches PROJ 9.6.0 exact-minus-approx exactly" "4326 -> 32083","passing","EPSG","4326","EPSG","32083","1.0","-1.0","0.0","8612478.855000","-219946.308900","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed for the exact Transverse Mercator: the datum uses NAD27 grids so PROJ cannot be invoked directly, but the shift matches PROJ 9.6.0 exact-minus-approx exactly" @@ -3626,7 +3898,9 @@ "4326 -> 32154","passing","EPSG","4326","EPSG","32154","1.0","-1.0","0.0","1.1385107910133E7","1302231.579991","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 32161","passing","EPSG","4326","EPSG","32161","1.0","-1.0","0.0","7952042.830285","-479128.830527","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 32166","error","EPSG","4326","EPSG","32166","1.0","-1.0","0.0","5.913029814767E7","-2026562.8464","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 32166 (area of use)","passing","EPSG","4326","EPSG","32166","-86.960000","36.135000","0.0","1652224.226993","13119799.338719","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 32167","error","EPSG","4326","EPSG","32167","1.0","-1.0","0.0","5.0276969639849E7","-1552948.471705","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 32167 (area of use)","passing","EPSG","4326","EPSG","32167","-81.040000","34.970000","0.0","1628437.041835","12695896.252636","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 32180","passing","EPSG","4326","EPSG","32180","1.0","-1.0","0.0","7976601.826127","-201836.910943","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 32181","passing","EPSG","4326","EPSG","32181","1.0","-1.0","0.0","7485122.173446","-189281.454101","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 32182","passing","EPSG","4326","EPSG","32182","1.0","-1.0","0.0","8078826.347523","-204602.141116","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" @@ -3639,9 +3913,13 @@ "4326 -> 32189","passing","EPSG","4326","EPSG","32189","1.0","-1.0","0.0","14602368.100993","-550624.402643","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 32190","passing","EPSG","4326","EPSG","32190","1.0","-1.0","0.0","16540704.466247","-776353.629276","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed against PROJ 9.6.0 (the stored values were pre-PROJ-6 tmerc series values)" "4326 -> 32191","error","EPSG","4326","EPSG","32191","1.0","-1.0","0.0","1.5757736995238E7","-505151.848614","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 32191 (area of use)","passing","EPSG","4326","EPSG","32191","-82.300000","43.835000","0.0","320884.019852","4855023.008697","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 32192","error","EPSG","4326","EPSG","32192","1.0","-1.0","0.0","1.5133700109056E7","-473481.699571","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 32192 (area of use)","passing","EPSG","4326","EPSG","32192","-81.000000","50.605000","0.0","304800.000000","5607583.333826","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 32193","error","EPSG","4326","EPSG","32193","1.0","-1.0","0.0","1.6414214001085E7","-539612.639806","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 32193 (area of use)","passing","EPSG","4326","EPSG","32193","-84.000000","50.795000","0.0","304800.000000","5628717.300182","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 32194","error","EPSG","4326","EPSG","32194","1.0","-1.0","0.0","1.7833009909167E7","-617882.974409","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 32194 (area of use)","passing","EPSG","4326","EPSG","32194","-87.000000","51.935000","0.0","304800.000000","5755535.600947","0.0","0.100000","0.100000","0.100000","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 32198","passing","EPSG","4326","EPSG","32198","1.0","-1.0","0.0","9550099.581142","-761710.176539","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 32199","passing","EPSG","4326","EPSG","32199","1.0","-1.0","0.0","1.1519135812446E7","975310.838643","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 32201","passing","EPSG","4326","EPSG","32201","1.0","-1.0","0.0","722578.795832","-1.988532147971E7","0.635127","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -3928,7 +4206,9 @@ "4326 -> 32662","passing","EPSG","4326","EPSG","32662","1.0","-1.0","0.0","111319.490800","-110574.388600","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed for the ellipsoidal Equidistant Cylindrical (EPSG:1028), the method EPSG defines for this CRS and that PROJ implements from 9.8.0; verified against PROJ's own test/gie/builtins.gie expectations" "4326 -> 32663","passing","EPSG","4326","EPSG","32663","1.0","-1.0","0.0","111319.490800","-110574.388600","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database; target ordinates refreshed for the ellipsoidal Equidistant Cylindrical (EPSG:1028), the method EPSG defines for this CRS and that PROJ implements from 9.8.0; verified against PROJ's own test/gie/builtins.gie expectations" "4326 -> 32666","error","EPSG","4326","EPSG","32666","1.0","-1.0","0.0","5.913029814656E7","-2026562.846327","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 32666 (area of use)","passing","EPSG","4326","EPSG","32666","-86.960000","27.100000","0.0","1653425.473462","9834336.865576","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 32667","error","EPSG","4326","EPSG","32667","1.0","-1.0","0.0","5.0276969639024E7","-1552948.471659","0.0","0.030480","0.030480","0.030480","","","","Auto-generated from proj.4 epsg database; marked error: the test point is outside the projection domain and PROJ 9.6.0 also fails it" +"4326 -> 32667 (area of use)","passing","EPSG","4326","EPSG","32667","-82.630000","26.880000","0.0","1109233.129272","9757807.517220","0.0","0.030480","0.030480","0.030480","","","","Added alongside the out-of-domain row above: test point taken from the CRS area of use in PROJ's database, verified against PROJ 9.6.0" "4326 -> 32701","passing","EPSG","4326","EPSG","32701","1.0","-1.0","0.0","722561.736479","-9885331.913518","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 32702","passing","EPSG","4326","EPSG","32702","1.0","-1.0","0.0","1392989.214538","-9884306.279451","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" "4326 -> 32703","passing","EPSG","4326","EPSG","32703","1.0","-1.0","0.0","2073447.882705","-9881992.849296","0.0","0.100000","0.100000","0.100000","","","","Auto-generated from proj.4 epsg database" @@ -4135,147 +4415,147 @@ "4326 -> 7134","passing","EPSG","4326","EPSG","7134","1.0","-1.0","0.0","6376200.806232","111296.999068","-110568.774825","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7137","passing","EPSG","4326","EPSG","7137","1.0","-1.0","0.0","6376200.806232","111296.999068","-110568.774825","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" "4326 -> 7371","passing","EPSG","4326","EPSG","7371","1.0","-1.0","0.0","6376200.806232","111296.999068","-110568.774821","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3901","error","EPSG","4326","EPSG","3901","1.0","-1.0","0.0","500710.973975","-122977.711085","-165.167033","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3902","error","EPSG","4326","EPSG","3902","1.0","-1.0","0.0","-2498135.612029","-123071.814862","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 3903","error","EPSG","4326","EPSG","3903","1.0","-1.0","0.0","-2498135.612029","-123071.814862","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4097","error","EPSG","4326","EPSG","4097","1.0","-1.0","0.0","-693328.681092","-5111666.040474","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4098","error","EPSG","4326","EPSG","4098","1.0","-1.0","0.0","-605874.418081","-5111959.650981","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4099","error","EPSG","4326","EPSG","4099","1.0","-1.0","0.0","-603605.841381","-5112560.596566","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 4100","error","EPSG","4326","EPSG","4100","1.0","-1.0","0.0","-774077.256672","-5113982.625197","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5318","error","EPSG","4326","EPSG","5318","1.0","-1.0","0.0","1093343.867984","-6111667.938834","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5554","error","EPSG","4326","EPSG","5554","1.0","-1.0","0.0","277438.263521","-110597.97252","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5555","error","EPSG","4326","EPSG","5555","1.0","-1.0","0.0","-392989.214538","-111623.606587","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5556","error","EPSG","4326","EPSG","5556","1.0","-1.0","0.0","-1073447.882706","-113937.036743","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5598","error","EPSG","4326","EPSG","5598","1.0","-1.0","0.0","-156452.534464","-112409.590659","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5628","error","EPSG","4326","EPSG","5628","1.0","-1.0","0.0","1.0","-1.0","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5698","error","EPSG","4326","EPSG","5698","1.0","-1.0","0.0","398545.725995","756370.639844","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5699","error","EPSG","4326","EPSG","5699","1.0","-1.0","0.0","398545.725995","756370.639844","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5707","error","EPSG","4326","EPSG","5707","1.0","-1.0","0.0","391415.780972","-5098765.098848","62.495489","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5708","error","EPSG","4326","EPSG","5708","1.0","-1.0","0.0","-192052.368919","-1038091.636738","62.495489","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5832","error","EPSG","4326","EPSG","5832","1.0","-1.0","0.0","1942839.357237","-110988.891985","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5833","error","EPSG","4326","EPSG","5833","1.0","-1.0","0.0","2606757.139676","-111657.546981","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5834","error","EPSG","4326","EPSG","5834","1.0","-1.0","0.0","3268175.410532","-112647.043075","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5835","error","EPSG","4326","EPSG","5835","1.0","-1.0","0.0","3926105.663731","-113971.626991","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5845","error","EPSG","4326","EPSG","5845","1.0","-1.0","0.0","-1073447.882706","-113937.036743","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5846","error","EPSG","4326","EPSG","5846","1.0","-1.0","0.0","-1081967.65415","-112657.885597","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5847","error","EPSG","4326","EPSG","5847","1.0","-1.0","0.0","-1252522.815483","-113277.274139","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5848","error","EPSG","4326","EPSG","5848","1.0","-1.0","0.0","-1424077.256672","-113982.625197","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5849","error","EPSG","4326","EPSG","5849","1.0","-1.0","0.0","-1596762.562957","-114776.551708","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5850","error","EPSG","4326","EPSG","5850","1.0","-1.0","0.0","-1770714.490165","-115662.040423","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5851","error","EPSG","4326","EPSG","5851","1.0","-1.0","0.0","-1338166.993449","-113619.049509","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5852","error","EPSG","4326","EPSG","5852","1.0","-1.0","0.0","-1510270.171064","-114368.338914","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5853","error","EPSG","4326","EPSG","5853","1.0","-1.0","0.0","-1683571.536271","-115207.648789","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5854","error","EPSG","4326","EPSG","5854","1.0","-1.0","0.0","-1858209.137234","-116140.162883","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5855","error","EPSG","4326","EPSG","5855","1.0","-1.0","0.0","-2034326.041478","-117169.481617","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5856","error","EPSG","4326","EPSG","5856","1.0","-1.0","0.0","-2212070.945308","-118299.655886","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5857","error","EPSG","4326","EPSG","5857","1.0","-1.0","0.0","-2391598.821908","-119535.225511","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5942","error","EPSG","4326","EPSG","5942","1.0","-1.0","0.0","1.0","-1.0","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5945","error","EPSG","4326","EPSG","5945","1.0","-1.0","0.0","-401380.815652","-5542201.223317","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5946","error","EPSG","4326","EPSG","5946","1.0","-1.0","0.0","-513112.691755","-5542371.843025","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5947","error","EPSG","4326","EPSG","5947","1.0","-1.0","0.0","-625033.675235","-5542577.168148","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5948","error","EPSG","4326","EPSG","5948","1.0","-1.0","0.0","-737178.841287","-5542817.519514","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5949","error","EPSG","4326","EPSG","5949","1.0","-1.0","0.0","-849583.615474","-5543093.2745","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5950","error","EPSG","4326","EPSG","5950","1.0","-1.0","0.0","-962283.83098","-5543404.868499","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5951","error","EPSG","4326","EPSG","5951","1.0","-1.0","0.0","-1075315.787292","-5543752.796612","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5952","error","EPSG","4326","EPSG","5952","1.0","-1.0","0.0","-1188716.310511","-5544137.615587","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5953","error","EPSG","4326","EPSG","5953","1.0","-1.0","0.0","-1302522.815483","-5544559.94602","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5954","error","EPSG","4326","EPSG","5954","1.0","-1.0","0.0","-1416773.369932","-5545020.474823","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5955","error","EPSG","4326","EPSG","5955","1.0","-1.0","0.0","-1531506.760797","-5545519.957977","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5956","error","EPSG","4326","EPSG","5956","1.0","-1.0","0.0","-1646762.562957","-5546059.223589","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5957","error","EPSG","4326","EPSG","5957","1.0","-1.0","0.0","-1762581.210546","-5546639.175265","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5958","error","EPSG","4326","EPSG","5958","1.0","-1.0","0.0","-1879004.071028","-5547260.795821","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5959","error","EPSG","4326","EPSG","5959","1.0","-1.0","0.0","-1996073.52225","-5547925.151356","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5960","error","EPSG","4326","EPSG","5960","1.0","-1.0","0.0","-2113833.032642","-5548633.395688","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5961","error","EPSG","4326","EPSG","5961","1.0","-1.0","0.0","-2232327.244772","-5549386.775214","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5962","error","EPSG","4326","EPSG","5962","1.0","-1.0","0.0","-2351602.06243","-5550186.63417","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5963","error","EPSG","4326","EPSG","5963","1.0","-1.0","0.0","-2471704.741451","-5551034.42036","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5964","error","EPSG","4326","EPSG","5964","1.0","-1.0","0.0","-2592683.984457","-5551931.691349","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5965","error","EPSG","4326","EPSG","5965","1.0","-1.0","0.0","-2714590.039706","-5552880.121167","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5966","error","EPSG","4326","EPSG","5966","1.0","-1.0","0.0","-2837474.804249","-5553881.507544","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5967","error","EPSG","4326","EPSG","5967","1.0","-1.0","0.0","-2961391.931586","-5554937.779704","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5968","error","EPSG","4326","EPSG","5968","1.0","-1.0","0.0","-3086396.944001","-5556051.006767","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5969","error","EPSG","4326","EPSG","5969","1.0","-1.0","0.0","-3212547.349776","-5557223.406762","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5970","error","EPSG","4326","EPSG","5970","1.0","-1.0","0.0","-3339902.765479","-5558457.356322","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5971","error","EPSG","4326","EPSG","5971","1.0","-1.0","0.0","277438.263521","-110597.97252","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5972","error","EPSG","4326","EPSG","5972","1.0","-1.0","0.0","-392989.214538","-111623.606587","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5973","error","EPSG","4326","EPSG","5973","1.0","-1.0","0.0","-1073447.882706","-113937.036743","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5974","error","EPSG","4326","EPSG","5974","1.0","-1.0","0.0","-1772080.292418","-117674.699966","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5975","error","EPSG","4326","EPSG","5975","1.0","-1.0","0.0","-2498135.612029","-123071.814862","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 5976","error","EPSG","4326","EPSG","5976","1.0","-1.0","0.0","-3262671.40897","-130501.513833","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6144","error","EPSG","4326","EPSG","6144","1.0","-1.0","0.0","1.0","-1.0","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6145","error","EPSG","4326","EPSG","6145","1.0","-1.0","0.0","-401380.815652","-5542201.223317","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6146","error","EPSG","4326","EPSG","6146","1.0","-1.0","0.0","-513112.691755","-5542371.843025","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6147","error","EPSG","4326","EPSG","6147","1.0","-1.0","0.0","-625033.675235","-5542577.168148","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6148","error","EPSG","4326","EPSG","6148","1.0","-1.0","0.0","-737178.841287","-5542817.519514","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6149","error","EPSG","4326","EPSG","6149","1.0","-1.0","0.0","-849583.615474","-5543093.2745","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6150","error","EPSG","4326","EPSG","6150","1.0","-1.0","0.0","-962283.83098","-5543404.868499","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6151","error","EPSG","4326","EPSG","6151","1.0","-1.0","0.0","-1075315.787292","-5543752.796612","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6152","error","EPSG","4326","EPSG","6152","1.0","-1.0","0.0","-1188716.310511","-5544137.615587","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6153","error","EPSG","4326","EPSG","6153","1.0","-1.0","0.0","-1302522.815483","-5544559.94602","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6154","error","EPSG","4326","EPSG","6154","1.0","-1.0","0.0","-1416773.369932","-5545020.474823","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6155","error","EPSG","4326","EPSG","6155","1.0","-1.0","0.0","-1531506.760797","-5545519.957977","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6156","error","EPSG","4326","EPSG","6156","1.0","-1.0","0.0","-1646762.562957","-5546059.223589","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6157","error","EPSG","4326","EPSG","6157","1.0","-1.0","0.0","-1762581.210546","-5546639.175265","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6158","error","EPSG","4326","EPSG","6158","1.0","-1.0","0.0","-1879004.071028","-5547260.795821","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6159","error","EPSG","4326","EPSG","6159","1.0","-1.0","0.0","-1996073.52225","-5547925.151356","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6160","error","EPSG","4326","EPSG","6160","1.0","-1.0","0.0","-2113833.032642","-5548633.395688","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6161","error","EPSG","4326","EPSG","6161","1.0","-1.0","0.0","-2232327.244772","-5549386.775214","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6162","error","EPSG","4326","EPSG","6162","1.0","-1.0","0.0","-2351602.06243","-5550186.63417","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6163","error","EPSG","4326","EPSG","6163","1.0","-1.0","0.0","-2471704.741451","-5551034.42036","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6164","error","EPSG","4326","EPSG","6164","1.0","-1.0","0.0","-2592683.984457","-5551931.691349","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6165","error","EPSG","4326","EPSG","6165","1.0","-1.0","0.0","-2714590.039706","-5552880.121167","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6166","error","EPSG","4326","EPSG","6166","1.0","-1.0","0.0","-2837474.804249","-5553881.507544","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6167","error","EPSG","4326","EPSG","6167","1.0","-1.0","0.0","-2961391.931586","-5554937.779704","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6168","error","EPSG","4326","EPSG","6168","1.0","-1.0","0.0","-3086396.944001","-5556051.006767","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6169","error","EPSG","4326","EPSG","6169","1.0","-1.0","0.0","-3212547.349776","-5557223.406762","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6170","error","EPSG","4326","EPSG","6170","1.0","-1.0","0.0","-3339902.765479","-5558457.356322","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6171","error","EPSG","4326","EPSG","6171","1.0","-1.0","0.0","277438.263521","-110597.97252","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6172","error","EPSG","4326","EPSG","6172","1.0","-1.0","0.0","-392989.214538","-111623.606587","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6173","error","EPSG","4326","EPSG","6173","1.0","-1.0","0.0","-1073447.882706","-113937.036743","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6174","error","EPSG","4326","EPSG","6174","1.0","-1.0","0.0","-1772080.292418","-117674.699966","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6175","error","EPSG","4326","EPSG","6175","1.0","-1.0","0.0","-2498135.612029","-123071.814862","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6176","error","EPSG","4326","EPSG","6176","1.0","-1.0","0.0","-3262671.40897","-130501.513833","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6190","error","EPSG","4326","EPSG","6190","1.0","-1.0","0.0","-381574.921263","-6309409.37876","-138.725677","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6649","error","EPSG","4326","EPSG","6649","1.0","-1.0","0.0","1.0","-1.0","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6650","error","EPSG","4326","EPSG","6650","1.0","-1.0","0.0","5079577.277109","-1.9855384152114E7","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6651","error","EPSG","4326","EPSG","6651","1.0","-1.0","0.0","5967185.609991","-1.9841803628716E7","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6652","error","EPSG","4326","EPSG","6652","1.0","-1.0","0.0","6950996.913984","-1.982316954146E7","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6653","error","EPSG","4326","EPSG","6653","1.0","-1.0","0.0","8068672.129214","-1.979682812923E7","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6654","error","EPSG","4326","EPSG","6654","1.0","-1.0","0.0","9380117.510219","-1.9757704843637E7","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6655","error","EPSG","4326","EPSG","6655","1.0","-1.0","0.0","1.0990756729525E7","-1.9694702609941E7","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6656","error","EPSG","4326","EPSG","6656","1.0","-1.0","0.0","1.3117319676437E7","-1.9577493844715E7","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6657","error","EPSG","4326","EPSG","6657","1.0","-1.0","0.0","1.635961359846E7","-1.9271652378892E7","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6658","error","EPSG","4326","EPSG","6658","1.0","-1.0","0.0","9821617.197798","-6559044.245001","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6661","error","EPSG","4326","EPSG","6661","1.0","-1.0","0.0","1.4018825808604E7","-484015.283423","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6662","error","EPSG","4326","EPSG","6662","1.0","-1.0","0.0","1.1625664379252E7","-331585.409964","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6663","error","EPSG","4326","EPSG","6663","1.0","-1.0","0.0","9876408.371062","-255706.192524","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6664","error","EPSG","4326","EPSG","6664","1.0","-1.0","0.0","8480365.932792","-210356.338473","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6665","error","EPSG","4326","EPSG","6665","1.0","-1.0","0.0","7306321.314799","-180502.818931","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6696","error","EPSG","4326","EPSG","6696","1.0","-1.0","0.0","1.0","-1.0","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6697","error","EPSG","4326","EPSG","6697","1.0","-1.0","0.0","1.0","-1.0","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6700","error","EPSG","4326","EPSG","6700","1.0","-1.0","0.0","0.99542","-1.00611","889.274204","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 6917","error","EPSG","4326","EPSG","6917","1.0","-1.0","0.0","1.0","-1.0","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7400","error","EPSG","4326","EPSG","7400","1.0","-1.0","0.0","-1.336717","-1.002977","62.495489","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7401","error","EPSG","4326","EPSG","7401","1.0","-1.0","0.0","397702.058411","-3694198.247873","62.495489","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7402","error","EPSG","4326","EPSG","7402","1.0","-1.0","0.0","397702.058411","-3694198.247873","62.495489","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7403","error","EPSG","4326","EPSG","7403","1.0","-1.0","0.0","403662.941422","-2299940.941008","62.495489","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7404","error","EPSG","4326","EPSG","7404","1.0","-1.0","0.0","1.001649","-1.004895","335.681331","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7405","error","EPSG","4326","EPSG","7405","1.0","-1.0","0.0","734004.745925","-5638279.547703","269.614465","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7406","error","EPSG","4326","EPSG","7406","1.0","-1.0","0.0","1.0","-1.0","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7407","error","EPSG","4326","EPSG","7407","1.0","-1.0","0.0","3.9497735901602E7","7799003.914727","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7408","error","EPSG","4326","EPSG","7408","1.0","-1.0","0.0","1.00016","-1.00418","155.870901","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7409","error","EPSG","4326","EPSG","7409","1.0","-1.0","0.0","1.0","-1.0","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7410","error","EPSG","4326","EPSG","7410","1.0","-1.0","0.0","0.999686","-1.00218","-31.060822","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7411","error","EPSG","4326","EPSG","7411","1.0","-1.0","0.0","397702.058411","-3694198.247873","62.495489","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7412","error","EPSG","4326","EPSG","7412","1.0","-1.0","0.0","397702.058411","-3694198.247873","62.495489","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7413","error","EPSG","4326","EPSG","7413","1.0","-1.0","0.0","403662.941422","-2299940.941008","62.495489","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7414","error","EPSG","4326","EPSG","7414","1.0","-1.0","0.0","0.99542","-1.00611","889.274204","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7415","error","EPSG","4326","EPSG","7415","1.0","-1.0","0.0","-455004.893909","-5876134.742828","155.870901","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7416","error","EPSG","4326","EPSG","7416","1.0","-1.0","0.0","-392989.214538","-111623.606587","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7417","error","EPSG","4326","EPSG","7417","1.0","-1.0","0.0","-1073447.882706","-113937.036743","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7418","error","EPSG","4326","EPSG","7418","1.0","-1.0","0.0","-749536.136293","-111805.012088","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7419","error","EPSG","4326","EPSG","7419","1.0","-1.0","0.0","-731906.055767","-112652.252702","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7420","error","EPSG","4326","EPSG","7420","1.0","-1.0","0.0","-674077.256672","-113982.625197","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7421","error","EPSG","4326","EPSG","7421","1.0","-1.0","0.0","397702.058411","-3694198.247873","62.495489","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7422","error","EPSG","4326","EPSG","7422","1.0","-1.0","0.0","403662.941422","-2299940.941008","62.495489","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" -"4326 -> 7423","error","EPSG","4326","EPSG","7423","1.0","-1.0","0.0","1.0","-1.0","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database" +"4326 -> 3901","passing","EPSG","4326","EPSG","3901","1.0","-1.0","0.0","500676.475839","-122978.789758","-165.167033","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 3902","passing","EPSG","4326","EPSG","3902","1.0","-1.0","0.0","-2498135.612029","-123071.814862","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 3903","passing","EPSG","4326","EPSG","3903","1.0","-1.0","0.0","-2498135.612029","-123071.814862","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 4097","passing","EPSG","4326","EPSG","4097","1.0","-1.0","0.0","-693328.681092","-5111666.040474","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 4098","passing","EPSG","4326","EPSG","4098","1.0","-1.0","0.0","-605874.429317","-5111959.651120","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 4099","passing","EPSG","4326","EPSG","4099","1.0","-1.0","0.0","-603605.879504","-5112560.597112","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 4100","passing","EPSG","4326","EPSG","4100","1.0","-1.0","0.0","-774077.513711","-5113982.629795","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5318","passing","EPSG","4326","EPSG","5318","1.0","-1.0","0.0","1093343.867984","-6111667.938834","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 5554","passing","EPSG","4326","EPSG","5554","1.0","-1.0","0.0","277438.263521","-110597.97252","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 5555","passing","EPSG","4326","EPSG","5555","1.0","-1.0","0.0","-392989.214538","-111623.606587","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 5556","passing","EPSG","4326","EPSG","5556","1.0","-1.0","0.0","-1073447.882706","-113937.036743","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 5598","passing","EPSG","4326","EPSG","5598","1.0","-1.0","0.0","-156452.563390","-112409.591061","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5628","passing","EPSG","4326","EPSG","5628","1.0","-1.0","0.0","1.0","-1.0","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 5698","passing","EPSG","4326","EPSG","5698","1.0","-1.0","0.0","398545.725995","756370.639844","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 5699","passing","EPSG","4326","EPSG","5699","1.0","-1.0","0.0","398545.725995","756370.639844","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 5707","passing","EPSG","4326","EPSG","5707","1.0","-1.0","0.0","391415.780972","-5098765.098848","62.495489","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 5708","passing","EPSG","4326","EPSG","5708","1.0","-1.0","0.0","-192052.368919","-1038091.636738","62.495489","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 5832","passing","EPSG","4326","EPSG","5832","1.0","-1.0","0.0","1942839.357237","-110988.891985","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 5833","passing","EPSG","4326","EPSG","5833","1.0","-1.0","0.0","2606757.139676","-111657.546981","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 5834","passing","EPSG","4326","EPSG","5834","1.0","-1.0","0.0","3268175.365858","-112647.043727","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5835","passing","EPSG","4326","EPSG","5835","1.0","-1.0","0.0","3926105.407353","-113971.631576","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5845","passing","EPSG","4326","EPSG","5845","1.0","-1.0","0.0","-1073447.882706","-113937.036743","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 5846","passing","EPSG","4326","EPSG","5846","1.0","-1.0","0.0","-1081967.698965","-112657.886251","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5847","passing","EPSG","4326","EPSG","5847","1.0","-1.0","0.0","-1252522.927306","-113277.275955","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5848","passing","EPSG","4326","EPSG","5848","1.0","-1.0","0.0","-1424077.513711","-113982.629795","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5849","passing","EPSG","4326","EPSG","5849","1.0","-1.0","0.0","-1596763.115252","-114776.562495","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5850","passing","EPSG","4326","EPSG","5850","1.0","-1.0","0.0","-1770715.611551","-115662.064177","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5851","passing","EPSG","4326","EPSG","5851","1.0","-1.0","0.0","-1338167.164560","-113619.052429","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5852","passing","EPSG","4326","EPSG","5852","1.0","-1.0","0.0","-1510270.550748","-114368.346018","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5853","passing","EPSG","4326","EPSG","5853","1.0","-1.0","0.0","-1683572.328388","-115207.664914","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5854","passing","EPSG","4326","EPSG","5854","1.0","-1.0","0.0","-1858210.705750","-116140.197409","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5855","passing","EPSG","4326","EPSG","5855","1.0","-1.0","0.0","-2034329.011169","-117169.551923","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5856","passing","EPSG","4326","EPSG","5856","1.0","-1.0","0.0","-2212076.352748","-118299.792953","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5857","passing","EPSG","4326","EPSG","5857","1.0","-1.0","0.0","-2391608.336377","-119535.482706","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5942","passing","EPSG","4326","EPSG","5942","1.0","-1.0","0.0","1.0","-1.0","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 5945","passing","EPSG","4326","EPSG","5945","1.0","-1.0","0.0","-401380.815652","-5542201.223317","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 5946","passing","EPSG","4326","EPSG","5946","1.0","-1.0","0.0","-513112.691755","-5542371.843025","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 5947","passing","EPSG","4326","EPSG","5947","1.0","-1.0","0.0","-625033.675235","-5542577.168148","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 5948","passing","EPSG","4326","EPSG","5948","1.0","-1.0","0.0","-737178.841287","-5542817.519514","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 5949","passing","EPSG","4326","EPSG","5949","1.0","-1.0","0.0","-849583.615474","-5543093.2745","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 5950","passing","EPSG","4326","EPSG","5950","1.0","-1.0","0.0","-962283.847191","-5543404.868706","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5951","passing","EPSG","4326","EPSG","5951","1.0","-1.0","0.0","-1075315.819628","-5543752.797063","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5952","passing","EPSG","4326","EPSG","5952","1.0","-1.0","0.0","-1188716.371920","-5544137.616514","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5953","passing","EPSG","4326","EPSG","5953","1.0","-1.0","0.0","-1302522.927306","-5544559.947834","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5954","passing","EPSG","4326","EPSG","5954","1.0","-1.0","0.0","-1416773.566285","-5545020.478225","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5955","passing","EPSG","4326","EPSG","5955","1.0","-1.0","0.0","-1531507.094775","-5545519.964131","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5956","passing","EPSG","4326","EPSG","5956","1.0","-1.0","0.0","-1646763.115252","-5546059.234374","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5957","passing","EPSG","4326","EPSG","5957","1.0","-1.0","0.0","-1762582.101218","-5546639.193638","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5958","passing","EPSG","4326","EPSG","5958","1.0","-1.0","0.0","-1879005.475356","-5547260.826342","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5959","passing","EPSG","4326","EPSG","5959","1.0","-1.0","0.0","-1996075.691768","-5547925.200909","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5960","passing","EPSG","4326","EPSG","5960","1.0","-1.0","0.0","-2113836.322727","-5548633.474492","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5961","passing","EPSG","4326","EPSG","5961","1.0","-1.0","0.0","-2232332.150416","-5549386.898187","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5962","passing","EPSG","4326","EPSG","5962","1.0","-1.0","0.0","-2351609.264146","-5550186.822769","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5963","passing","EPSG","4326","EPSG","5963","1.0","-1.0","0.0","-2471715.163646","-5551034.705028","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5964","passing","EPSG","4326","EPSG","5964","1.0","-1.0","0.0","-2592698.869007","-5551932.114736","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5965","passing","EPSG","4326","EPSG","5965","1.0","-1.0","0.0","-2714611.037981","-5552880.742333","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5966","passing","EPSG","4326","EPSG","5966","1.0","-1.0","0.0","-2837504.091373","-5553882.407388","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5967","passing","EPSG","4326","EPSG","5967","1.0","-1.0","0.0","-2961432.347352","-5554939.067940","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5968","passing","EPSG","4326","EPSG","5968","1.0","-1.0","0.0","-3086452.165613","-5556052.830799","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5969","passing","EPSG","4326","EPSG","5969","1.0","-1.0","0.0","-3212622.102393","-5557225.962917","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5970","passing","EPSG","4326","EPSG","5970","1.0","-1.0","0.0","-3340003.077490","-5558460.903966","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 5971","passing","EPSG","4326","EPSG","5971","1.0","-1.0","0.0","277438.263521","-110597.97252","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 5972","passing","EPSG","4326","EPSG","5972","1.0","-1.0","0.0","-392989.214538","-111623.606587","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 5973","passing","EPSG","4326","EPSG","5973","1.0","-1.0","0.0","-1073447.882706","-113937.036743","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 5974","passing","EPSG","4326","EPSG","5974","1.0","-1.0","0.0","-1772080.292418","-117674.699966","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 5975","passing","EPSG","4326","EPSG","5975","1.0","-1.0","0.0","-2498135.612029","-123071.814862","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 5976","passing","EPSG","4326","EPSG","5976","1.0","-1.0","0.0","-3262671.40897","-130501.513833","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 6144","passing","EPSG","4326","EPSG","6144","1.0","-1.0","0.0","1.0","-1.0","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 6145","passing","EPSG","4326","EPSG","6145","1.0","-1.0","0.0","-401380.815652","-5542201.223317","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 6146","passing","EPSG","4326","EPSG","6146","1.0","-1.0","0.0","-513112.691755","-5542371.843025","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 6147","passing","EPSG","4326","EPSG","6147","1.0","-1.0","0.0","-625033.675235","-5542577.168148","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 6148","passing","EPSG","4326","EPSG","6148","1.0","-1.0","0.0","-737178.841287","-5542817.519514","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 6149","passing","EPSG","4326","EPSG","6149","1.0","-1.0","0.0","-849583.615474","-5543093.2745","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 6150","passing","EPSG","4326","EPSG","6150","1.0","-1.0","0.0","-962283.847191","-5543404.868706","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 6151","passing","EPSG","4326","EPSG","6151","1.0","-1.0","0.0","-1075315.819628","-5543752.797063","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 6152","passing","EPSG","4326","EPSG","6152","1.0","-1.0","0.0","-1188716.371920","-5544137.616514","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 6153","passing","EPSG","4326","EPSG","6153","1.0","-1.0","0.0","-1302522.927306","-5544559.947834","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 6154","passing","EPSG","4326","EPSG","6154","1.0","-1.0","0.0","-1416773.566285","-5545020.478225","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 6155","passing","EPSG","4326","EPSG","6155","1.0","-1.0","0.0","-1531507.094775","-5545519.964131","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 6156","passing","EPSG","4326","EPSG","6156","1.0","-1.0","0.0","-1646763.115252","-5546059.234374","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 6157","passing","EPSG","4326","EPSG","6157","1.0","-1.0","0.0","-1762582.101218","-5546639.193638","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 6158","passing","EPSG","4326","EPSG","6158","1.0","-1.0","0.0","-1879005.475356","-5547260.826342","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 6159","passing","EPSG","4326","EPSG","6159","1.0","-1.0","0.0","-1996075.691768","-5547925.200909","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 6160","passing","EPSG","4326","EPSG","6160","1.0","-1.0","0.0","-2113836.322727","-5548633.474492","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 6161","passing","EPSG","4326","EPSG","6161","1.0","-1.0","0.0","-2232332.150416","-5549386.898187","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 6162","passing","EPSG","4326","EPSG","6162","1.0","-1.0","0.0","-2351609.264146","-5550186.822769","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 6163","passing","EPSG","4326","EPSG","6163","1.0","-1.0","0.0","-2471715.163646","-5551034.705028","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 6164","passing","EPSG","4326","EPSG","6164","1.0","-1.0","0.0","-2592698.869007","-5551932.114736","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 6165","passing","EPSG","4326","EPSG","6165","1.0","-1.0","0.0","-2714611.037981","-5552880.742333","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 6166","passing","EPSG","4326","EPSG","6166","1.0","-1.0","0.0","-2837504.091373","-5553882.407388","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 6167","passing","EPSG","4326","EPSG","6167","1.0","-1.0","0.0","-2961432.347352","-5554939.067940","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 6168","passing","EPSG","4326","EPSG","6168","1.0","-1.0","0.0","-3086452.165613","-5556052.830799","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 6169","passing","EPSG","4326","EPSG","6169","1.0","-1.0","0.0","-3212622.102393","-5557225.962917","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 6170","passing","EPSG","4326","EPSG","6170","1.0","-1.0","0.0","-3340003.077490","-5558460.903966","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 6171","passing","EPSG","4326","EPSG","6171","1.0","-1.0","0.0","277438.263521","-110597.97252","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 6172","passing","EPSG","4326","EPSG","6172","1.0","-1.0","0.0","-392989.214538","-111623.606587","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 6173","passing","EPSG","4326","EPSG","6173","1.0","-1.0","0.0","-1073447.882706","-113937.036743","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 6174","passing","EPSG","4326","EPSG","6174","1.0","-1.0","0.0","-1772080.292418","-117674.699966","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 6175","passing","EPSG","4326","EPSG","6175","1.0","-1.0","0.0","-2498135.612029","-123071.814862","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 6176","passing","EPSG","4326","EPSG","6176","1.0","-1.0","0.0","-3262671.40897","-130501.513833","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 6190","passing","EPSG","4326","EPSG","6190","1.0","-1.0","0.0","-381574.921263","-6309409.37876","-138.725677","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 6649","passing","EPSG","4326","EPSG","6649","1.0","-1.0","0.0","1.0","-1.0","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 6650","passing","EPSG","4326","EPSG","6650","1.0","-1.0","0.0","5079577.277109","-1.9855384152114E7","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 6651","passing","EPSG","4326","EPSG","6651","1.0","-1.0","0.0","5967185.609991","-1.9841803628716E7","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 6652","passing","EPSG","4326","EPSG","6652","1.0","-1.0","0.0","6950996.913984","-1.982316954146E7","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 6653","passing","EPSG","4326","EPSG","6653","1.0","-1.0","0.0","8068672.129214","-1.979682812923E7","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 6654","passing","EPSG","4326","EPSG","6654","1.0","-1.0","0.0","9380117.510219","-1.9757704843637E7","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 6655","passing","EPSG","4326","EPSG","6655","1.0","-1.0","0.0","1.0990756729525E7","-1.9694702609941E7","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 6656","passing","EPSG","4326","EPSG","6656","1.0","-1.0","0.0","1.3117319676437E7","-1.9577493844715E7","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 6657","passing","EPSG","4326","EPSG","6657","1.0","-1.0","0.0","1.635961359846E7","-1.9271652378892E7","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 6658","passing","EPSG","4326","EPSG","6658","1.0","-1.0","0.0","9821617.197798","-6559044.245001","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 6661","passing","EPSG","4326","EPSG","6661","1.0","-1.0","0.0","1.4018825808604E7","-484015.283423","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 6662","passing","EPSG","4326","EPSG","6662","1.0","-1.0","0.0","1.1625664379252E7","-331585.409964","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 6663","passing","EPSG","4326","EPSG","6663","1.0","-1.0","0.0","9876408.371062","-255706.192524","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 6664","passing","EPSG","4326","EPSG","6664","1.0","-1.0","0.0","8480365.932792","-210356.338473","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 6665","passing","EPSG","4326","EPSG","6665","1.0","-1.0","0.0","7306321.314799","-180502.818931","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 6696","passing","EPSG","4326","EPSG","6696","1.0","-1.0","0.0","1.0","-1.0","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 6697","passing","EPSG","4326","EPSG","6697","1.0","-1.0","0.0","1.0","-1.0","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 6700","passing","EPSG","4326","EPSG","6700","1.0","-1.0","0.0","0.99542","-1.00611","889.274204","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 6917","passing","EPSG","4326","EPSG","6917","1.0","-1.0","0.0","1.0","-1.0","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 7400","passing","EPSG","4326","EPSG","7400","1.0","-1.0","0.0","-1.336717","-1.002977","62.495489","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 7401","passing","EPSG","4326","EPSG","7401","1.0","-1.0","0.0","397702.058411","-3694198.247873","62.495489","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 7402","passing","EPSG","4326","EPSG","7402","1.0","-1.0","0.0","397702.058411","-3694198.247873","62.495489","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 7403","passing","EPSG","4326","EPSG","7403","1.0","-1.0","0.0","403662.941422","-2299940.941008","62.495489","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 7404","passing","EPSG","4326","EPSG","7404","1.0","-1.0","0.0","1.001649","-1.004895","335.681331","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 7405","passing","EPSG","4326","EPSG","7405","1.0","-1.0","0.0","734004.745925","-5638279.547703","269.614465","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 7406","passing","EPSG","4326","EPSG","7406","1.0","-1.0","0.0","1.0","-1.0","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, the datum uses NAD27 grids, so PROJ 9.6.0 was verified on the projection alone" +"4326 -> 7407","passing","EPSG","4326","EPSG","7407","1.0","-1.0","0.0","3.9497735901602E7","7799003.914727","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, the datum uses NAD27 grids, so PROJ 9.6.0 was verified on the projection alone" +"4326 -> 7408","passing","EPSG","4326","EPSG","7408","1.0","-1.0","0.0","1.00016","-1.00418","155.870901","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 7409","passing","EPSG","4326","EPSG","7409","1.0","-1.0","0.0","1.0","-1.0","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 7410","passing","EPSG","4326","EPSG","7410","1.0","-1.0","0.0","0.999686","-1.00218","-31.060822","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 7411","passing","EPSG","4326","EPSG","7411","1.0","-1.0","0.0","397702.058411","-3694198.247873","62.495489","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 7412","passing","EPSG","4326","EPSG","7412","1.0","-1.0","0.0","397702.058411","-3694198.247873","62.495489","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 7413","passing","EPSG","4326","EPSG","7413","1.0","-1.0","0.0","403662.941422","-2299940.941008","62.495489","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 7414","passing","EPSG","4326","EPSG","7414","1.0","-1.0","0.0","0.99542","-1.00611","889.274204","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 7415","passing","EPSG","4326","EPSG","7415","1.0","-1.0","0.0","-455004.756019","-5876134.609736","155.870901","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 7416","passing","EPSG","4326","EPSG","7416","1.0","-1.0","0.0","-392989.214538","-111623.606587","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 7417","passing","EPSG","4326","EPSG","7417","1.0","-1.0","0.0","-1073447.882706","-113937.036743","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 7418","passing","EPSG","4326","EPSG","7418","1.0","-1.0","0.0","-749536.136293","-111805.012088","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 7419","passing","EPSG","4326","EPSG","7419","1.0","-1.0","0.0","-731906.100580","-112652.253357","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 7420","passing","EPSG","4326","EPSG","7420","1.0","-1.0","0.0","-674077.513711","-113982.629795","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Target ordinates refreshed, verified against PROJ 9.6.0" +"4326 -> 7421","passing","EPSG","4326","EPSG","7421","1.0","-1.0","0.0","397702.058411","-3694198.247873","62.495489","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 7422","passing","EPSG","4326","EPSG","7422","1.0","-1.0","0.0","403662.941422","-2299940.941008","62.495489","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0" +"4326 -> 7423","passing","EPSG","4326","EPSG","7423","1.0","-1.0","0.0","1.0","-1.0","0.0","0.010000","0.010000","0.010000","","","","Auto-generated from proj.4 epsg database; +vunits is now accepted (recorded, not applied: the vertical ordinate stays in metres), so this compound CRS parses and the row runs. Stored ordinates were already correct, verified against PROJ 9.6.0"