Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/ropensci/osmextract
Browse files Browse the repository at this point in the history
  • Loading branch information
agila5 committed Oct 31, 2024
2 parents e36d704 + abf3015 commit 2aa83c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@

### MINOR CHANGES

* Updated the `osmconf.ini` file to be in synch with the GDAL version.
* Updated the `osmconf.ini` file to be in synch with the GDAL version.
* Added `oneway` as column by default when using `get_network(mode = "driving")`, which indicates if a link represents an uni-directional road ([#296](https://github.com/ropensci/osmextract/issues/296))

# osmextract 0.5.1

Expand Down
2 changes: 1 addition & 1 deletion R/get-network.R
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ load_options_driving = function(place) {
list(
place = place,
layer = "lines",
extra_tags = c("access", "service"),
extra_tags = c("access", "service","oneway"),
vectortranslate_options = c(
"-where", "
(highway IS NOT NULL)
Expand Down

0 comments on commit 2aa83c6

Please sign in to comment.