You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Therefore, we need to convert the character ":" into "_" when checking the "extra_tags" otherwise the vectortranslate operations are always triggered:
osmextract::oe_get(
"Andorra", layer="multipolygons", extra_tags= c("power", "plant:source"), download_only=TRUE
)
#> The input place was matched with: Andorra#> The chosen file was already detected in the download directory. Skip downloading.#> Starting 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!#> [1] "D:/osm-data/geofabrik_andorra-latest.gpkg"osmextract::oe_get(
"Andorra", layer="multipolygons", extra_tags= c("power", "plant:source"), download_only=TRUE
)
#> The input place was matched with: Andorra#> The chosen file was already detected in the download directory. Skip downloading.#> Starting 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!#> [1] "D:/osm-data/geofabrik_andorra-latest.gpkg"
The character
:
gets converted to_
when translating the.pbf
file into.gpkg
format, i.e.Created on 2022-08-17 by the reprex package (v2.0.1)
Therefore, we need to convert the character ":" into "_" when checking the "extra_tags" otherwise the vectortranslate operations are always triggered:
Created on 2022-08-17 by the reprex package (v2.0.1)
The text was updated successfully, but these errors were encountered: