Created
March 27, 2012 20:47
-
-
Save joelhaasnoot/2220126 to your computer and use it in GitHub Desktop.
RD to 4326
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def transform_rd(point): | |
''' Please note this returns an OGRGeometry, not a point ''' | |
src_string = '+proj=sterea +lat_0=52.15616055555555 +lon_0=5.38763888888889 +k=0.9999079 +x_0=155000 +y_0=463000 +ellps=bessel +units=m +towgs84=565.2369,50.0087,465.658,-0.406857330322398,0.350732676542563,-1.8703473836068,4.0812 +no_defs no_defs <>' | |
src_srs = SpatialReference(src_string) | |
geom = OGRGeometry(point.wkt, src_srs) | |
geom.transform(4326) | |
return geom |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment