Skip to content

Instantly share code, notes, and snippets.

@mbforr
Created July 11, 2021 04:40
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mbforr/152cd5e66094c65bb1d051869aa09d0c to your computer and use it in GitHub Desktop.
Save mbforr/152cd5e66094c65bb1d051869aa09d0c to your computer and use it in GitHub Desktop.
# applicable to PostGIS
# transforms any geometry to any other EPSG projection
# you can add any to your database using this site
# http://epsg.io/
select
st_transform(geom, 3857) as geom
from
states
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment