Get the official spatial reference identifier for this projection, if any
Create a conversion function from this projection to another one, which can be applied to JTS Geometries.
Create a conversion function from this projection to another one, which can be applied to JTS Geometries. Example usage:
val jtsGeom = Point(1, 2).underlying
val convert: jts.Point => jts.Point = Projection("EPSG:4326") to Projection("EPSG:3785")
val reprojected = convert(jtsGeom)
Get the Well Known Text specification of this projection.
Get the Well Known Text specification of this projection.
http://en.wikipedia.org/wiki/Well-known_text
A Projection is a particular system of representing real-world locations with numeric coordinates. For example, Projection("EPSG:4326") is the system of representing positions with (longitude, latitude) pairs.