locationtech / proj4j

Java port of the Proj.4 library for coordinate reprojection
Other
184 stars 73 forks source link

Support for parameters like R #54

Closed skinkie closed 4 years ago

skinkie commented 4 years ago

I am trying to implement https://gis.stackexchange.com/questions/344809/proj4-definition-for-wgs84-coordinates-multiplied-by-1000000/344829#344829 sadly the answer contains something where proj4j reports "R parameter is not supported". Is there an implementation reason not to support this from the library?

pomadchin commented 4 years ago

Hi @skinkie, this library is just not a complete port of a PROJ library. I think originally it was planned to add all the PROJ functions support, but there were not enough of time spent on that.

As your first steps, you can try to add it as a registered parameter here and to trace down the problems that would be introduced by adding this parameter support.

I guess some parsers / transform functions just dont support it. You're welcome to work on the and we'll try to help you on that path :+1: