Changes between Version 23 and Version 24 of UsersWikiplpgsqlfunctions


Ignore:
Timestamp:
Jan 20, 2011, 7:50:10 PM (13 years ago)
Author:
robe
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • UsersWikiplpgsqlfunctions

    v23 v24  
    6868[http://www.spatialdbadvisor.com/oracle_spatial_tips_tricks/114/converting-google-earth-formatted-longitude-latitude-points-to-decimal-degrees Converting Google Earth Formatted Longitude/Latitude points to decimal degrees]
    6969Example use:
     70
     71{{{
     72SELECT round(dms2dd('43° 0''50.60"S'),9) as latitude,
     73       round(dms2dd('147°12''18.20"E'),9) as longitude;
     74}}}
     75
     76
     77
    7078{{{
    7179CREATE OR REPLACE FUNCTION DMS2DD(strDegMinSec varchar)