-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
Description
It would be useful to be able to easily generate coordinate conversions of the form:
xval.coordTransformX([fromCRS],[toCRS]. [fromX], [fromY]
yval.coordTransformY([fromCRS],[toCRS]. [fromX], [fromY]
eg from OSGB to WGS84
northing.coordTransformY('epsg:27700', 'epsg:4326', northing, easting)
easting.coordTransformX('epsg:27700', 'epsg:4326', northing, easting)
Java libraries like GeoTools contain the means to build coordinate transforms between applicable CRS's i.e. CRS's that are relevant in the same geography.
Reactions are currently unavailable