Closed jdenisgiguere closed 2 years ago
Hi @jdenisgiguere it is a proj4j bug: https://github.com/locationtech/proj4j/issues/61 It is not a critical issue though.
Thanks for reporting!
Is addressed here: https://github.com/locationtech/proj4j/pull/71 I'll close this issue once we'll upgrade GT up to the fresh proj4j release.
Current situation
When I reproject a layer into a
ZoomLayoutScheme
usinggeotrellis.proj4.WebMercator
as CRS, the json file of metadata of the resulting layer will contain this srs definition:If I query the
AttributeStore
metadata forcrs.epsgCode
it will return: 3785. EPSG:3785 is a deprecated code for Web Mercator.In
geotrellis.proj4.WebMercator
, we explicitly exposeepsgCode
as 3857.Expected situation
When looking at
metadata.crs.epsgCode
of a layer reprojected togeotrellis.proj4.WebMercator
, I would expect the value to be 3857.