Created
January 16, 2021 01:34
Choropleth Maps in Julia
This file contains 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
#= | |
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)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is what it should produce (the colors are random and nonsensical):