Using PostGIS I have a lat/lon point and want to add an east/west and north/south offset in metres to get a new point. Is that possible?
|
You can use ST_Translate:
Source: http://www.bostongis.com/postgis_translate.snippet You'll have to transform lat/lon to meters first. You can use ST_Transform to achieve this:
Source: http://postgis.refractions.net/documentation/manual-svn/ST_Transform.html |
|||||||
|