You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
using Shapefile
import Shapefile: getshp, getdbf
using DataFrames
f ="./test/shapelib_testcases/test.shp"
t = Shapefile.Table(f)
d =DataFrame(t)
inds =ismissing(d.TestInt)
d2 = d[inds, :] # use DataFrame, proj will be dropped
Shapefile.write(d2, "a.shp")
Any method to subset shp directly via Shapefile?
The text was updated successfully, but these errors were encountered:
Any method to subset shp directly via Shapefile?
The text was updated successfully, but these errors were encountered: