Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
import java.util.regex.Pattern;
import org.geotools.api.referencing.FactoryException;
import org.geotools.coverage.grid.GridCoverage2D;
import org.junit.Ignore;
import org.junit.Test;

/**
Expand Down Expand Up @@ -86,19 +85,11 @@ public void testProjRoundTrip_LambertAzimuthalEqualArea_Spherical_2163() throws
}

@Test
@Ignore(
"apache/sedona#3103: RS_CRS PROJ-string export is not idempotent for this CRS "
+ "due to a raster CRS-bridge path divergence (surfaced by the proj4sedona 0.1.0 "
+ "serialization changes; transforms are unaffected).")
public void testProjRoundTrip_AlbersEqualArea_5070() throws FactoryException {
assertProjRoundTrip(5070);
}

@Test
@Ignore(
"apache/sedona#3103: RS_CRS PROJ-string export is not idempotent for this CRS "
+ "due to a raster CRS-bridge path divergence (surfaced by the proj4sedona 0.1.0 "
+ "serialization changes; transforms are unaffected).")
public void testProjRoundTrip_ObliqueStereographic_28992() throws FactoryException {
assertProjRoundTrip(28992);
}
Expand Down Expand Up @@ -129,28 +120,16 @@ public void testProjRoundTrip_PolarStereographicA_32661() throws FactoryExceptio
}

@Test
@Ignore(
"apache/sedona#3103: RS_CRS PROJ-string export is not idempotent for this CRS "
+ "due to a raster CRS-bridge path divergence (surfaced by the proj4sedona 0.1.0 "
+ "serialization changes; transforms are unaffected).")
public void testProjRoundTrip_TransverseMercator_OSGB_27700() throws FactoryException {
assertProjRoundTrip(27700);
}

@Test
@Ignore(
"apache/sedona#3103: RS_CRS PROJ-string export is not idempotent for this CRS "
+ "due to a raster CRS-bridge path divergence (surfaced by the proj4sedona 0.1.0 "
+ "serialization changes; transforms are unaffected).")
public void testProjRoundTrip_AlbersEqualArea_Australian_3577() throws FactoryException {
assertProjRoundTrip(3577);
}

@Test
@Ignore(
"apache/sedona#3103: RS_CRS PROJ-string export is not idempotent for this CRS "
+ "due to a raster CRS-bridge path divergence (surfaced by the proj4sedona 0.1.0 "
+ "serialization changes; transforms are unaffected).")
public void testProjRoundTrip_LambertConformalConic2SP_Vicgrid_3111() throws FactoryException {
assertProjRoundTrip(3111);
}
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
<scala-collection-compat.version>2.5.0</scala-collection-compat.version>
<geoglib.version>1.52</geoglib.version>
<caffeine.version>2.9.2</caffeine.version>
<proj4sedona.version>0.1.0</proj4sedona.version>
<proj4sedona.version>0.1.1</proj4sedona.version>

<geotools.scope>provided</geotools.scope>
<!-- Because it's not in Maven central, make it provided by default -->
Expand Down
Loading