Skip to content

Commit

Permalink
Updated the "GeoTools" adapter implementation to use version 28.0, an…
Browse files Browse the repository at this point in the history
…d generated a new output csv file "CrsTransformationAdapterGeoTools_version_28.0.csv" with lots of coordinate transformations created by this new version,

which can be compared (e.g. by using WinMerge) with the csv file from the previously used version i.e. the csv file "CrsTransformationAdapterGeoTools_version_26.2.csv"
(and there were no differences)
  • Loading branch information
TomasJohansson committed Jan 5, 2023
1 parent f8ac823 commit 544b44e
Show file tree
Hide file tree
Showing 4 changed files with 6,438 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {
// then also run CoordinateTestDataGeneratedFromEpsgDatabaseTest
// to generate a file such as "/crs-transformation-adapter-test/src/test/resources/regression_results/CrsTransformationAdapterNgaGeoInt_version_4.0.0.csv"
ext.ngageoint_version = '4.3.0' // https://github.com/ngageoint/simple-features-proj-java/releases/tag/4.1.0
ext.geotools_version = '26.2' // https://repo.osgeo.org/service/rest/repository/browse/release/org/geotools/gt-main/
ext.geotools_version = '28.0' // https://repo.osgeo.org/service/rest/repository/browse/release/org/geotools/gt-main/
// Note that the latest versions above and below are different (since "gt-data" tends to be some version number(s) behind) // https://mvnrepository.com/artifact/org.geotools/gt-data?repo=boundless
ext.geotools_data_version = '20.5' // "org.geotools:gt-data:$geotools_data_version" // https://repo.osgeo.org/service/rest/repository/browse/release/org/geotools/gt-data/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
* to/from the coordinate system in the first EPSG column.
*/

@Disabled // you may want to temporary change this line if you want to run the "tests"
@Disabled // you may want to temporary change this line if you want to run the "tests"
// (and also see comments in the class TestCategory regarding that this "test" file creates files and produces output to the console)
// TODO modify the code in the below methods to make them only generate
// csv files if not already existing.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ void geotoolsAdapter_shouldMatchExpectedEnumAndJarfileNameWithVersion() {
verifyExpectedEnumAndJarfileVersion(
new CrsTransformationAdapterGeoTools(),
CrsTransformationImplementationType.LEAF_GEOTOOLS,
"26.2" // "gt-main-26.2.jar"
"28.0" // "gt-main-28.0.jar"
);
}

Expand Down
Loading

0 comments on commit 544b44e

Please sign in to comment.