Created
April 6, 2016 17:43
-
-
Save walkerke/fddd360c90220ecee9d1cbf9d27df54a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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