项目作者: RobWiederstein

项目描述 :
Choropleth map for low birth weight babies in Kentucky
高级语言: HTML
项目地址: git://github.com/RobWiederstein/ky_lbw.git
创建时间: 2020-04-20T13:11:53Z
项目社区:https://github.com/RobWiederstein/ky_lbw

开源协议:MIT License

下载


Kentucky LBW Choropleth Map

Low Birth Weight

The data was furnished courtesy of the Annie E. Casey Kids County initiative. Low birth weight is an excellent indicator of overall maternal and infant health. My home county—Henderson County, Kentucky—has struggled in this area for years. This project was undertaken to learn about leaflet choropleth maps and had the benefit of a working model on the “Kids Count” website. (The website allows for a county choropleth map to be drawn using one of dozens of indicators.)

Workflow

Project Workflow

Join of Dataframe with Shape file

Efforts to join the dataframe with the shapefile were challenging. When performing the operation, an error message was generated that row.names did not match polygon ID. Several different methods were attempted including the one below:

  1. #crucial insight came from Robin Lovelace
  2. # dplyr::left_join function
  3. lnd@data <- left_join(lnd@data, crime_ag, by = c('name' = 'Borough'))

GIS exchange had a question that directly addressed the issue. The author noted that matching rownames with polygon id was a common problem. This GIS exchange post gave the background to the problem and most most importantly showed how to get the polygon ID from the polyspatial object. I was finally able to get it to work.

  1. #assign polygon id to column variable in
  2. #county line .shp file
  3. cl.01@data$pid <- sapply(slot(cl.01, "polygons"), function(x) slot(x, "ID"))

License

Distributed under the MIT License. See LICENSE for more information.

Contact

Rob Wiederstein - @https://twitter.com/RobWiederstein - rob@robwiederstein.org

Project Link: https://github.com/RobWiederstein/ky_lbw

Acknowledgements

Annie E. Casey Kids County Initiative.

Kentucky Open GIS Data Portal.

Robin Lovelace—Creating Maps in R.

Robin Lovelace—Geocomputation in R.

Kan Nishida—Creating GeoJSON out of Shapefile in R.

Cartocolors: Data-driven color schemes.