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
This would enable easy mapping of of paths or cost distances to geographic space/geometries.
Then add methods for all of the LightGraphs/SimpleWeightedGraphs functions, e.g.:
has_edge(a::SpatialWeightedGraph, b, c) =has_edge(a.graph, b, c)
The alternative is for the user to store this information elsewhere and make sure it remains properly sorted. That asks more of the user and may introduce more opportunities for user error.
The text was updated successfully, but these errors were encountered:
vlandau
changed the title
Add new graph type (compatible with LightGraphs) with additional geospatial fields
Add new graph type (compatible with LightGraphs) with additional geospatial fields?
Dec 24, 2020
Add either lat/lon coordinates for vertices, or entire geometries, as well as info on projections? Not sure what this should look like.
Maybe something like this:
This would enable easy mapping of of paths or cost distances to geographic space/geometries.
Then add methods for all of the LightGraphs/SimpleWeightedGraphs functions, e.g.:
The alternative is for the user to store this information elsewhere and make sure it remains properly sorted. That asks more of the user and may introduce more opportunities for user error.
The text was updated successfully, but these errors were encountered: