-
Notifications
You must be signed in to change notification settings - Fork 4
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
New datasets #5
Comments
Hi ! Do you plan to add the possibility of downloading LiDAR data ? By the way, you have done nice work with this package! Best regards |
Hi, thanks for your interest in this package! We would like to include all datasets provided by GUGiK. However, at this moment, not all datasets are covered by simple sharing services that we can use. I think it will be possible in the future, as with the orthophotomaps. Best regards! |
@GreKro I added possibility of downloading all DEM products including point clouds. Here is example: remotes::install_github("kadyb/rgugik")
library("sf")
library("lidR")
library("rgugik")
# load your polygon with area of interest
polygon_path = system.file("datasets/search_area.gpkg", package = "rgugik")
polygon = read_sf(polygon_path)
# return df with available datasets
req_df = DEM_request(polygon)
# select LAS files
req_df = req_df[req_df$format == "LAS", ]
# download only first to working directory
tile_download(req_df[1, ])
# load LAS file
las = readLAS("4675_320841_N-33-130-D-b-2-3-3-1.las")
las
#> class : LAS (v1.2 format 3)
#> memory : 550.6 Mb
#> extent : 359925.3, 360472.2, 512836.6, 513430.8 (xmin, xmax, ymin, ymax)
#> coord. ref. : NA
#> area : 307470.9 units²
#> points : 6.28 million points
#> density : 20.41 points/units² |
We have currently implemented all shared datasets (except Ewidencja Gruntów i Budynków, but there is no proper sharing infrastructure, maybe this will change in the future). Additionally, we could implement the geometry acquisition function ( We could also implement reverse geocoding for coordinates. Enter the coordinates, and as a result you get the geometry of the administrative unit (voivodeships, counties, communes) and/or its name and TERYT. @Nowosad what do you think? |
That would be great! Revese geocoding could also be nice, but not as useful as the first thing. |
Ewidencja Gruntów i Budynków is provided as a WFS service (not all counties are available). How can we deal with it in R: |
GUGiK added the ability to download the topographic databases for voivodeships and the entire country (not only for individual counties as now). http://www.gugik.gov.pl/aktualnosci/24.11.2020-ulatwienie-w-pobieraniu-danych-bdot10k |
Note that PRG (voivodeship / country level) is based on EMUiA (communal level).
borders_get()
from APIAnother source:
Warsaw (parcels and buildings geometry)
The text was updated successfully, but these errors were encountered: