How can I convert X-coord and Y-coord in INP file to standard latitude and longitude? #200
-
I want to draw polygons using mapbox,but I can't convert the coordinates of polygons to standard latitude and longitude. [Polygons] |
Beta Was this translation helpful? Give feedback.
Replies: 0 comments 1 reply
-
I think I have solved this question,and I use following code: PATH = "./config/Example1.inp"
crs = "epsg:3728" # Coordinate Reference System
m = swmmio.Model(PATH, crs=crs)
m.to_crs("EPSG:4326")
res = m.inp.polygons.round(5)
res.info() |
Beta Was this translation helpful? Give feedback.
I think I have solved this question,and I use following code: