Perguntas com a marcação «matplotlib»

13
Plotar shapefile com matplotlib

Eu estou tentando ler um shapefile e plotá-lo usando matplotlib. Aqui está o código: import matplotlib.pyplot as plt import shapefile shpFilePath = "D:\test.shp" listx=[] listy=[] test = shapefile.Reader(shpFilePath) for sr in test.shapeRecords(): for xNew,yNew in sr.shape.points:...

8
Traçando mapas raster em python?

Estou tentando traçar um mapa raster usando Pyhton. A imagem não está sendo salva, embora apareça. Além disso, os pixels não estão aparecendo no local exato. Estou obtendo a imagem conforme mostrado abaixo (o que está errado, no entanto, a rotulação lat-lon está correta.) Abaixo está a...