Skip to content

Instantly share code, notes, and snippets.

@TheCedarPrince
Created January 16, 2021 01:34
Show Gist options
  • Save TheCedarPrince/52f9be6c14479fecce0b403751fafcc2 to your computer and use it in GitHub Desktop.
Save TheCedarPrince/52f9be6c14479fecce0b403751fafcc2 to your computer and use it in GitHub Desktop.
Choropleth Maps in Julia
#=
Summary: A simple gist on creating a choropleth map of counties in the US.
NOTE: You must install this data set for this gist: https://www2.census.gov/geo/tiger/TIGER2017/COUNTY/tl_2017_us_county.zip
Copyright 2021 Jacob Zelko (aka TheCedarPrince)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
=#
using Plots
using RecipesBase
using Shapefile
county_shape_file = "path/to/tl_2017_us_county.shp"
counties = Shapefile.Table(count_shape_file)
#=
02 - Alaska
15 - Hawaii
60 - American Samoa
66 - Guam
69 - Northern Mariana Islands
72 - Puerto Rico
78 - Virgin Islands
=#
skipped_territories = ["02", "15", "60", "66", "69", "72", "78"] # For creating pretty output
function selectshapes(table, skipped)
geoms = empty(Shapefile.shapes(table))
for row in table
if !(row.STATEFP in skipped)
push!(geoms, Shapefile.shape(row))
end
end
return geoms
end
selectshapes(counties, skipped_territories) |> x -> plot(x, axis = ([], false))
@TheCedarPrince
Copy link
Author

This is what it should produce (the colors are random and nonsensical):

01152021165009-prototype-county-chloropleth

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment