Last active
December 16, 2016 10:18
-
-
Save mdiener21/562093f9ecd0362d1c4d3f50902619d4 to your computer and use it in GitHub Desktop.
qgis expression to convert x-coordinate to epsg 3857 from epsg 4326
This file contains hidden or 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
x-geom | |
substr(to_string(geom_to_wkt(transform( $geometry ,'EPSG:4326','EPSG:3857'))),7,16) | |
y-geom | |
substr(to_string(geom_to_wkt(transform( $geometry ,'EPSG:4326','EPSG:3857'))),25,16) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment