Skip to content

Instantly share code, notes, and snippets.

@walkerke
Created April 6, 2016 17:43
Show Gist options
  • Save walkerke/fddd360c90220ecee9d1cbf9d27df54a to your computer and use it in GitHub Desktop.
Save walkerke/fddd360c90220ecee9d1cbf9d27df54a to your computer and use it in GitHub Desktop.
# Load in the data with readOGR (warning: slow)
parcels <- readOGR(dsn = ".", layer = 'tad5ft', stringsAsFactors = FALSE)
# Drop undeveloped parcels and unneeded columns
parcels <- parcels[parcels$PARCELTYPE != 2, ]
parcels@data <- parcels@data[c('TAXPIN', 'CALCULATED')]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment