You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: