I tried the solution posted in:
- Creating Polyline from GML using PyShp?,
- Using PyShp to convert polygons in *.csv to *.shp files? and
- Using PyShp to create polygon shapefiles?
to generate polylines from a csv file.
When I load the shapefile into QGIS, it is not displaying the lines.
Is this a known issue with QGIS?
I am using QGIS 2.8.2 on a Mac.
I can see that the coordinates are in the shapefile when I do this:
import shapefile
test = shapefile.Reader(shpFilePath)
shapes = test.shapes()
for i in xrange(0,len(shapes)):
x = shapes[i]
a = x.__geo_interface__
print a['coordinates']
Is there another software we could use to view the shapefiles?