[/kode]
library(geofi)
library(ggplot2)
<- get_municipalities(year = 2020, scale = 4500)
municipalities ggplot(municipalities) +
geom_sf(aes(fill = as.integer(kunta))) +
scale_fill_viridis_c()
geofi
for accessing Statistics Finland spatial data11. helmikuuta 2020
We have slowly started developing a follow-up package with ropengov-posse for gisfin-package named geofi
. Package provides access to few sources of Finnish open geospatial data from R. We are focusing in administrative regions at the moment and our primary source of data is Statistics Finland and their wfs
-api. You can use functions in geofi
fecth data such as municipality borders, postal code areas sekä population grids.
geofi
is not published in CRAN yet and you cant install it using intall.packages()
. But you can install it directly from Github with remotes::install_github("ropengov/geofi")
and try out the following examples. For quick access try our Shiny app at: muuankarski.shinyapps.io/geofi_selain/
.
Municipalility borders
Postal code areas
Population grids
Regions (maakunnant), health care districts (sairaanhoitopiirit) and many more regional breakdowns are based on municipality divide. get_municipalities()
-function returns data containing these attribute variables (year 2020), that you can use to aggregate from municipality level upwards.
Take a look at the Github-site and join us!
@online{kainu2020,
author = {Kainu, Markus},
title = {R-packages `geofi` for accessing Statistics Finland spatial
data},
date = {2020-02-11},
url = {https://markuskainu.fi/posts/2020-02-06-geofi-pkg-in-development/},
langid = {fi}
}