-
Notifications
You must be signed in to change notification settings - Fork 3
Closed
Description
Problem
CURVEPOLYGON appears in PCRS datasets ( #231 ) and JTS can't read the corresponding WKT
Actions
Short term
- v4.2.0 - Try to upgrade geotools and JTS to read them (note that it changes some digits in last decimals in DATA and validation report)
- v4.2.1 - Add a
GeometryReaderclass to useWKTReader2by default instead ofWKTReaderas geotools extends JTS Geometry types to bring curved geometry support (see https://docs.geotools.org/stable/userguide/library/jts/geometry.html ) - v4.2.1 - Ensure that there is no regression for GpU and DGPR (validator-regress-test)
Long term
- 4.x - validator-core - curved geometries - add dedicated core types #247
- 4.x - validator-core - curved geometries - allows to keep curved geometries in normalized data #246
Notes
- WKTReader2 from geotools doesn't support dimension name after geometry type ("POINT Z ..."). A fallback to original WKTReader is added to avoid regressions. An interface
GeometryFormatis mainly added to clarify naming and to allow other formats such as GeoJSON, WKB,... in the future.