4
Semplice mappatura tematica di shapefile usando Python?
Vorrei visualizzare i dati geografici in Python, senza usare ArcGIS / ArcPy, e creare una mappa. Su internet ho scoperto come creare una mappa tematica usando Python : Ecco un po 'di codice che ho provato: import shpUtils import matplotlib.pyplot as plt shpRecords = shpUtils.loadShapefile('C:\\Users\\shapefile.shp') for i in range(0,len(shpRecords)): x …