Skip to content

Commit

Permalink
set default oneway to false, except roundabouts
Browse files Browse the repository at this point in the history
  • Loading branch information
hungy ye authored and Hye committed Oct 12, 2021
1 parent 68039e4 commit 6631bdf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "LightOSM"
uuid = "d1922b25-af4e-4ba3-84af-fe9bea896051"
authors = ["Jack Chan <[email protected]>"]
version = "0.1.17"
version = "0.1.18"

[deps]
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
Expand Down
4 changes: 2 additions & 2 deletions src/constants.jl
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@ const DEFAULT_LANES = Dict(
Default oneway attribute based on highway type.
"""
const DEFAULT_ONEWAY = Dict(
"motorway" => true,
"trunk" => true,
"motorway" => false,
"trunk" => false,
"primary" => false,
"secondary" => false,
"tertiary" => false,
Expand Down

4 comments on commit 6631bdf

@hs-ye
Copy link
Contributor

@hs-ye hs-ye commented on 6631bdf Oct 12, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Error while trying to register: Register Failed
@spcogg, it looks like you are not a publicly listed member/owner in the parent organization (DeloitteDigitalAPAC).
If you are a member/owner, you will need to change your membership to public. See GitHub Help

@hs-ye
Copy link
Contributor

@hs-ye hs-ye commented on 6631bdf Oct 12, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/46569

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.18 -m "<description of version>" 6631bdf8a36830b741f525831be79ffe53a04849
git push origin v0.1.18

Please sign in to comment.