jiayuasu opened a new issue, #2299: URL: https://github.com/apache/sedona/issues/2299
``` String wkt1 = "POLYGON ((179 -5, 179 5, -179 5, -179 -5, 179 -5))"; Geometry geom1 = org.apache.sedona.common.Constructors.geomFromWKT(wkt1, 4326); Geography geog1 = org.apache.sedona.common.geography.Constructors.geogFromWKT(wkt1, 4326); assertEquals(wkt1, geom1.toString()); assertEquals(wkt1, geog1.toString()); ``` In Geography, the default `toString()` should not print SRID. It should have a separate method (asEWKT) to print EWKT string which has SRID. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
