[英]R how can I get only ways from Overpass API and reduce the amount of data
我试图减少查询跨越服务器所需的数据量和时间。 我只对方法和使用 osmdata Package 感兴趣,这是我目前的方法:
library(osmdata)
bbox_dimensions <-c(xmin=11.2360151977671, ymin= 47.8047832575026, xmax= 11.8886729361838, ymax=48.2426118570748)
my_osm_data <- opq(bbox = bbox_dimensions,timeout = 180,memsize = 104857600) %>%
add_osm_feature(
key = 'highway',
value = c("primary","secondary", "tertiary")
) %>%
osmdata_sf(quiet = FALSE)
是否可以减少此查询的数据量? 我只对沿途的节点不感兴趣。
正如我在评论中所写,如果您需要对属于同一地理区域的 OSM 数据运行多个查询,我建议您采用以下方法。
首先,加载包
library(sf)
#> Linking to GEOS 3.9.0, GDAL 3.2.1, PROJ 7.2.1
library(osmextract)
#> Data (c) OpenStreetMap contributors, ODbL 1.0. https://www.openstreetmap.org/copyright.
#> Check the package website, https://docs.ropensci.org/osmextract/, for more details.
library(tmap)
tmap_mode("view")
#> tmap mode set to interactive viewing
定义bbox
并转换为sfc
object(参见github的讨论):
my_bbox <- st_bbox(
c(xmin = 11.2360151977671, ymin = 47.8047832575026, xmax = 11.8886729361838, ymax = 48.2426118570748),
crs = 4326
)
my_bbox_poly <- st_as_sfc(my_bbox)
然后,我们需要为应该涵盖所有查询的特定地理区域下载 OSM 提取。 如果您在德国使用数据,那么我建议您检查geofabrik
和bbbike
提供商:
oe_match(my_bbox_poly, provider = "geofabrik")
#> The input place was matched with multiple geographical areas.
#> Selecting the smallest administrative unit. Check ?oe_match for more details.
#> $url
#> [1] "https://download.geofabrik.de/europe/germany/bayern/oberbayern-latest.osm.pbf"
#>
#> $file_size
#> [1] 185338670
oe_match(my_bbox_poly, provider = "bbbike")
#> $url
#> [1] "https://download.bbbike.org/osm/bbbike/Muenchen/Muenchen.osm.pbf"
#>
#> $file_size
#> [1] 58400897
bbbike
提供程序返回的提取比geofabrik
返回的提取小得多; 因此,我将使用bbbike
返回的 OSM 数据运行以下步骤。
oe_get("Muenchen", provider = "bbbike", download_only = TRUE, skip_vectortranslate = TRUE)
#> The input place was matched with: Muenchen
#> File downloaded!
#> [1] "C:\\Users\\Utente\\Documents\\osm-data\\bbbike_Muenchen.osm.pbf"
然后,如果您想读入属于特定 bbox 并具有某些特征的行数据,那么我建议采用以下方法:
lines_v1 <- oe_get(
place = "Muenchen", # or place = my_bbox_poly
layer = "lines",
provider = "bbbike",
query = "SELECT * FROM lines WHERE highway IN ('primary', 'secondary', 'tertiary')",
wkt_filter = st_as_text(my_bbox_poly)
)
#> The input place was matched with: Muenchen
#> The chosen file was already detected in the download directory. Skip downloading.
#> Start with the vectortranslate operations on the input file!
#> 0...10...20...30...40...50...60...70...80...90...100 - done.
#> Finished the vectortranslate operations on the input file!
#> Reading layer `lines' from data source `C:\Users\Utente\Documents\osm-data\bbbike_Muenchen.gpkg' using driver `GPKG'
#> Simple feature collection with 13032 features and 9 fields
#> Geometry type: LINESTRING
#> Dimension: XY
#> Bounding box: xmin: 11.19608 ymin: 47.80002 xmax: 11.89542 ymax: 48.25359
#> Geodetic CRS: WGS 84
请注意,function 识别出您已经下载了 OSM 提取并跳过再次下载相同的文件。 如果您设置永久下载目录,则可以优化此过程。 有关更多详细信息,请参见此处。
# Check result
tm_shape(my_bbox_poly) +
tm_borders(col = "darkred") +
tm_shape(lines_v1) +
tm_lines(lwd = 2)
一种更有效(但更棘手)的方法如下:
lines_v2 <- oe_get(
place = "Muenches",
layer = "lines",
provider = "bbbike",
vectortranslate_options = c(
"-f", "GPKG",
"-overwrite",
"-where", "highway IN ('primary', 'secondary', 'tertiary')",
"-clipsrc", st_as_text(my_bbox_poly),
"-nlt", "PROMOTE_TO_MULTI",
"lines"
)
)
#> The input place was matched with: Muenchen
#> The chosen file was already detected in the download directory. Skip downloading.
#> Start with the vectortranslate operations on the input file!
#> 0...10...20...30...40...50...60...70...80...90...100 - done.
#> Finished the vectortranslate operations on the input file!
#> Reading layer `lines' from data source `C:\Users\Utente\Documents\osm-data\bbbike_Muenchen.gpkg' using driver `GPKG'
#> Simple feature collection with 13027 features and 9 fields
#> Geometry type: MULTILINESTRING
#> Dimension: XY
#> Bounding box: xmin: 11.23602 ymin: 47.80478 xmax: 11.88867 ymax: 48.24261
#> Geodetic CRS: WGS 84
图形检查
# Check result
tm_shape(my_bbox_poly) +
tm_borders(col = "darkred") +
tm_shape(lines_v2) +
tm_lines(lwd = 2)
由代表 package (v1.0.0) 于 2021 年 3 月 31 日创建
概括:
.gpkg
文件的底层结构(可能会产生相关后果)。 我们正在努力解决这两个问题,但您需要等到版本 0.3 或 0.4。查看此处、 此处和 此处了解 osmextract 背后的更多详细信息。
随时在此处添加任何问题或评论。
声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.