Pytania oznaczone «matplotlib»

15
Rysuj plik kształtu za pomocą matplotlib

Próbuję odczytać plik kształtu i wykreślić go za pomocą matplotlib. Oto kod: 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: listx.append(xNew)...