Skip to content

Commit dddc320

Browse files
authored
Merge pull request #769 from GIScience/fastisochrones
Fastisochrones
2 parents efe5956 + 86c6a8c commit dddc320

File tree

69 files changed

+8152
-52
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+8152
-52
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55

66
## [Unreleased]
77
### Added
8+
- New fast isochrone algorithm based on preprocessed data
89
### Fixed
910
### Changed
1011
### Deprecated

openrouteservice-api-tests/conf/app.config.test

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,30 @@
2727
{profiles: "any", value: 18000}
2828
{profiles: "driving-car, driving-hgv", value: 3600}
2929
],
30+
fastisochrones: {
31+
maximum_range_distance: [
32+
{profiles: "any", value: 50000 }
33+
{profiles: "driving-car, driving-hgv", value: 500000 }
34+
],
35+
maximum_range_time: [
36+
{profiles: "any", value: 18000 }
37+
{profiles: "driving-car, driving-hgv", value: 10800 }
38+
].
39+
profiles: {
40+
default_params: {
41+
enabled: false,
42+
threads: 12,
43+
weightings: "recommended",
44+
maxcellnodes: 5000
45+
},
46+
profile-vehicles-hgv: {
47+
enabled: true,
48+
threads: 12,
49+
weightings: "recommended, shortest",
50+
maxcellnodes: 5000
51+
}
52+
}
53+
},
3054
maximum_intervals: 10,
3155
maximum_locations: 2,
3256
allow_compute_area: true

0 commit comments

Comments
 (0)