Changes between Version 23 and Version 24 of UsersWikiplpgsqlfunctions
- Timestamp:
- 01/20/11 19:50:10 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UsersWikiplpgsqlfunctions
v23 v24 68 68 [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] 69 69 Example use: 70 71 {{{ 72 SELECT 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 70 78 {{{ 71 79 CREATE OR REPLACE FUNCTION DMS2DD(strDegMinSec varchar)