Converti shapefile da coordinate proiettate usando Python


10

Newbie qui alle prese con GIS. Sto cercando di mappare i reparti per la città di Milwuakee usando gli shapefile trovati sul sito web della contea del loro sito web della contea . Sto seguendo il thread qui con un certo successo. Il mio codice è:

from pyproj import Proj, transform
# wisconsing EPSG:32054
# epsg:4326 is for the entire world, wgs 84...not obvious
inProj = Proj(init='epsg:32054')
outProj = Proj(init='epsg:4326')
x1,y1 = 2560131.496875003, 406816.434375003
x2,y2 = transform(inProj,outProj,x1,y1)
print(x2,y2)

con uscita,

-65.70220967836329 43.08590211722421

Il problema è che questo è sbagliato. Il lon / lat per Milwaukee è -87.863984 e 42.920816.

In secondo luogo, come posso farlo programmaticamente per l'intero file di forma. Vorrei tracciare questo nella mappa di base. Quando provo a seguire questa discussione ricevo un codice di errore:

with fiona.open("ward2012/ward.shp") as shp:
    ori = Proj(init='epsg:32054' ),
    dest= Proj(init='EPSG:4326',preserve_units=True)
    with fiona.open('ward2012/MKE_wards_lat_lon.shp', 'w', 'ESRI Shapefile', shp.schema.copy(), crs=from_epsg(4326))as output:
        for point in shp:
            x,y =  point['geometry']['coordinates']
            point['geometry']['coordinates'] = transform(ori, dest,x,y)
            output.write(point)

errore:

---------------------------------------------------------------------------
ValueError                                Traceback (most recent call last)
<ipython-input-139-a5079ab39f99> in <module>()
      4     with fiona.open('ward2012/MKE_wards_lat_lon.shp', 'w', 'ESRI Shapefile', shp.schema.copy(), crs=from_epsg(4326))as output:
      5         for point in shp:
----> 6             x,y =  point['geometry']['coordinates']
      7             point['geometry']['coordinates'] = transform(ori, dest,x,y)
      8             output.write(point)

ValueError: not enough values to unpack (expected 2, got 1)

Risposte:


10

Alla prima domanda, il codice 'epsg: 32054' ha unità piedi. Per questo motivo, è necessario utilizzare 'preserv_units = True' come parametro in inProj = Proj(init='epsg:32054')linea. Ora, il prossimo codice funziona bene:

from pyproj import Proj, transform
# wisconsing EPSG:32054
# epsg:4326 is for the entire world, wgs 84...not obvious
inProj = Proj(init='epsg:32054', preserve_units=True)
outProj = Proj(init='epsg:4326')
x1,y1 = 2560131.496875003, 406816.434375003
x2,y2 = transform(inProj,outProj,x1,y1)
print (x2,y2)
(-87.9028568836077, 43.09691266312185)

Alla seconda domanda, ward.shp è un file di forma poligonale; non un shapefile punto. In questo caso, è possibile utilizzare il modulo geopandas per la riproiezione. Il mio codice proposto è (con il mio percorso particolare):

import geopandas as gpd

tmp = gpd.GeoDataFrame.from_file('/home/zeito/pyqgis_data/ward2012/ward.shp')

tmpWGS84 = tmp.to_crs({'proj':'longlat', 'ellps':'WGS84', 'datum':'WGS84'})

tmpWGS84.to_file('/home/zeito/pyqgis_data/ward2012/wardWGS84.shp')

Nell'immagine successiva, puoi vedere lo shapefile riproiettato (wardWGS84.shp) e il punto (-87.9028568836077, 43.09691266312185) prima considerato in Map Canvas di QGIS:

inserisci qui la descrizione dell'immagine

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.