Skip to content

Commit

Permalink
map mutability, upd dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
pszufe committed Dec 12, 2020
1 parent 682a3e0 commit b74a8d4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "OpenStreetMapX"
uuid = "86cd37e6-c0ff-550b-95fe-21d72c8d4fc9"
authors = ["Przemyslaw Szufel <[email protected]>", "Bartosz Pankratz <[email protected]>", "Anna Szczurek <[email protected]>", "Bogumil Kaminski <[email protected]>", "Pawel Pralat <[email protected]>"]
version = "0.2.2"
version = "0.2.3"

[deps]
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
Expand All @@ -16,7 +16,7 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"

[compat]
DataStructures = "^0.17.0, ^0.18.0"
HTTP = "^0.7.0, ^0.8.0"
HTTP = "^0.7.0, ^0.8.0, ^0.9.0"
JSON = "^0.20.0, ^0.21.0"
LibExpat = "^0.6.0"
LightGraphs = "^1.3.3"
Expand Down
10 changes: 5 additions & 5 deletions src/types.jl
Original file line number Diff line number Diff line change
Expand Up @@ -258,13 +258,13 @@ This is the main data structure used fot map data analytics.
* `roadways` : unique roads stored as a OpenStreetMapX.Way objects
* `intersections` : roads intersections
* `g` : `LightGraphs` directed graph representing a road network
* `v` : vertices in the road network
* `n` : OpenStreetMap node ids for the graphs vertices
* `e` : edges in the graph represented as a tuple (source,destination)
* `w` : edge weights, indexed by graph id
* `v` : vertices in the road network (node id .=> graph vertex)
* `n` : vector of OpenStreetMap node ids for each corresponding graph vertex
* `e` : vector of edges in the graph represented as a tuple (source,destination)
* `w` : sparse matrix of edge weights, indexed by graph id
* `class` : road class of each edge
"""
struct MapData
mutable struct MapData
bounds::Bounds{LLA}
nodes::Dict{Int,ENU}
roadways::Array{Way,1}
Expand Down

2 comments on commit b74a8d4

@pszufe
Copy link
Owner Author

@pszufe pszufe commented on b74a8d4 Dec 12, 2020

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/26277

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.2.3 -m "<description of version>" b74a8d432efd61683a9eaea3282381feceaa8b44
git push origin v0.2.3

Please sign in to comment.