-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add download links to readme #77
Comments
Thanks for your kind words! I will look into this. I am kind of puzzled - in a good way, so don't take it as offensive, just curious: are you, without access to R, able to open RDS files? I lived under the impression that these are R specific (but you live & learn, always...). Which is why I hid them, and event he domain is on purpose vague. This can be remedied. Relating your side note: many admin areas have been published in open format already - though this is not the case with ZIP codes which you linked which are not outcome of state administrative but postal (and the Czech post office is kinda sorta private in nature and thus not subject to the directive in question). As is often the case the open data are buried deep and poorly documented, but can be had in non-R specific format when you know where to look for. This may fit your needs better than RDS files / but then again I know only a little about your needs, so ... but as I have invested a lot of time in searching with rather varying success I will be happy to share what I got. |
No, I actually wasn't able to open RDS files in a different way, so I ended up installing R (+R Studio) and just downloading the data from there as gpkg like this (if anyone might have the same needs): install.packages("RCzechia")
library(RCzechia)
zip_data <- zip_codes()
geopackage_file <- "zip_data.gpkg"
st_write(zip_data, geopackage_file, layer = "zip_codes", driver = "GPKG") It's still fairly simple but as you're repo is the sort of "go to" for Czech data it'd be nice to have these files (or maybe geoparquet or gzipped geojson files) directly available as download if your s3 bucket permits. It's the same story with the German post, used to be public, now private and not quite openly releasing the zip codes everyone is relying on... but at least all the public data will be released at that date! |
The ZIP codes dataset is special, and I will provide a GPKG (which is a nicely platform neutral format) download link in a future version of the package. The ZIP codes dataset was tricky to obtain / not illegal, and used with permission, but took me a while to chase down / and it will be a good idea to share. I would rather not do so with the admin areas, as the "official" files are published by the Cadastral Office at https://vdp.cuzk.cz/vdp/ruian - unfortunately as far as I know the site (it has been recently renovated, and I am not quite up to date with the new version) does not have an English language mutation. But you can download the latest monthly snapshot at this link https://vdp.cuzk.cz/vymenny_format/soucasna/20230831_ST_UKSG.xml.zip - these may be in theory more current than my datasets (as I don't update monthly and they do - but as I use only municipality and higher admin area level these files are pretty static; the main action happens at lower level of detail). There is also an "unofficially official" plugin for QGIS that connects to the latest RUIAN that can be found (again, sadly only in Czech) at https://github.com/ctu-geoforall-lab/qgis-ruian-plugin - it is capable of much lower level of detail than I am (down to individual buildings level). You may find this of interest as well, if you can overcome the language issue. |
Thanks a lot for the background info! Like I mentioned earlier, let's hope that by next year life will become easier and all public data will be accessible in INSPIRE :) |
* link to raw RUIAN for admin data / resolves #77 * download links for zip codes & KFME grid / relates #77 * pkgdown - prepare for future deployment * cleaner silnice * sidestep the pesky mbcsToSbcs failure * that pesky unicode! * a more colorful plot of kraje * align ozymandias and dockerfile * + přfuk confirmation * internals of the world, unite! * helper functions created * update docs for new internals * historie in principle working / relates #40 * resolve CI fails on R-devel * yet another shot at a clean workflow run * unicode gets no respect * shorter title for clarity * update docs of history() * historie in tests / relates #40 * resolve vignette warning * date for release 1.12.0 set to 2023-10-29 * resolve winbuilder issues * resolve codecov issues * less aggressive testing of envir vars
Thanks a lot for your work! Projects like this are the rescue for many :)
It would be great if you could add the hyperlinks for the datasets directly in the readme so folks like me who are looking for the data but don't have R installed can access them too (e.g. https://rczechia.jla-data.net/zip-high-2021-02.rds etc.).
As a side note: by June 9 2024 all EU states will be forced to open many public data sets, like administrative geometries and more!
The text was updated successfully, but these errors were encountered: