Skip to content

Instantly share code, notes, and snippets.

@fxcosta
Created March 30, 2021 12:47
Show Gist options
  • Save fxcosta/338c0dda4a633440eb39dca897283d43 to your computer and use it in GitHub Desktop.
Save fxcosta/338c0dda4a633440eb39dca897283d43 to your computer and use it in GitHub Desktop.
psql script to convert multipolygon 3857 format to polygon 4326 format
// SQL Server script
select m.Projection.STAsText() from Municipalities m where m.Id = 2156
// postgreSQL script
select
ST_AsText(
(ST_Dump(
ST_Transform(
ST_GeomFromText(
'MULTIPOLYGON (((-3884126.3010306959 -791883.451045178, -3884126.3010306945 -791883.45104516833, -3884126.3010306982 -791883.45104517636, -3884126.3010306959 -791883.451045178)), ((-3893236.4527932997 -800877.64490911842, -3892191.9273572848 -800025.844839543, -3890964.1567836069 -800166.86940394074, -3890308.1098329481 -799567.087032903, -3888864.2525632759 -800133.6170797341, -3888066.1494093197 -799974.048784268, -3887760.3277926128 -800355.48796048935, -3886801.3321703845 -799662.98475919117, -3886201.8417713884 -798025.13301518466, -3887020.5708114384 -797276.06510668714, -3887157.2154216631 -796221.85454990936, -3886489.2946365052 -795611.23870923941, -3885533.6696349503 -795433.01819036063, -3885276.8615179742 -794737.74445359781, -3884537.5393745154 -794944.22897379287, -3884104.8104961966 -793665.70045422565, -3884587.354684833 -792898.40303022764, -3884126.3010306982 -791883.45104517636, -3886467.5829128809 -790114.31985120138, -3886915.739732807 -791393.788719087, -3886012.3153652237 -792689.8699557361, -3886643.9334849142 -792735.95698949543, -3886340.7108404492 -793202.47812516964, -3886677.6723673185 -794125.99371098238, -3887144.7232630132 -794147.36987051961, -3887419.6538073262 -794963.60942097113, -3887933.3027169458 -794508.54193255375, -3889650.0168828648 -795211.07235884666, -3893236.4527932997 -800877.64490911842)))',
3857
),
4326
)
)).geom
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment