4
¿Mapeo temático simple de shapefile usando Python?
Deseo visualizar datos geográficos en Python, sin usar ArcGIS / ArcPy, y hacer un mapa. En internet encontré cómo hacer un mapa temático usando Python : Aquí hay un código que probé: import shpUtils import matplotlib.pyplot as plt shpRecords = shpUtils.loadShapefile('C:\\Users\\shapefile.shp') for i in range(0,len(shpRecords)): x = [] y = …