TransWikia.com

Defining coordinate system for every GeoDataFrame (shapefile) in list

Geographic Information Systems Asked by hughbk on July 31, 2021

I am looking to set a coordinate system for every GeoDataFrame in a list of them. So I need this:

gdfs[0].crs = "EPSG:6668"
gdfs[1].crs = "EPSG:6668"

And so on but iteratively. I tried:

([gdfs.crs = "EPSG:6668"] for file in gdfs)

And:

for file in gdfs:
    gdfs.crs = "EPSG:6668"

But not working, any solution?

One Answer

for gdf in gdfs:
    gdf.crs = "EPSG:6668"

Or

for i in range(len(gdfs)):
   gdfs[i].crs = "EPSG:6668"

Correct answer by user2856 on July 31, 2021

Add your own answers!

Ask a Question

Get help from others!

© 2024 TransWikia.com. All rights reserved. Sites we Love: PCI Database, UKBizDB, Menu Kuliner, Sharing RPP