-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Define usable Isochrone instantiator
- Loading branch information
1 parent
a95d5aa
commit dbb6c5e
Showing
2 changed files
with
86 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
...gine/src/main/resources/components/org.integratedmodelling.network/services/isochrone.kdl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
@klab 0.10.0 | ||
@version 0.10.0 | ||
@namespace klab.isochrone | ||
|
||
export object isochrone | ||
"Generates the Isochrone for a point based on the parameters." | ||
{ | ||
text source | ||
"Semantics for the type of the subjects used as source for the isochrone" | ||
|
||
optional enum collapse_geometry | ||
"Method used to collapse line and polygon sources and targets to a single point or a set of points." | ||
values Centroid | ||
default "Centroid" | ||
|
||
optional enum transport | ||
"Type of transport used to find a route" | ||
values Auto, Pedestrian, Bicycle, Bus, Truck, Taxi, MotorScooter, Multimodal | ||
default "Auto" | ||
|
||
optional number limit | ||
"Distance or time threshold for creating the isochrone." | ||
default 10 | ||
|
||
optional text server | ||
"Specify the endpoint for the Valhalla server." | ||
|
||
class org.integratedmodelling.klab.components.geospace.routing.services.IsochroneInstantiator | ||
|
||
} |