Skip to content

Commit

Permalink
Update openrouteservice to 5.0.2
Browse files Browse the repository at this point in the history
Release 5.0.2
  • Loading branch information
Adam Rousell authored Sep 25, 2019
2 parents 02e2fec + 2d6f4ef commit 8a0e0ff
Show file tree
Hide file tree
Showing 82 changed files with 2,526 additions and 2,697 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,8 @@ jobs:
script:
- cp ${TRAVIS_BUILD_DIR}/openrouteservice-api-tests/conf/app.config.test ${TRAVIS_BUILD_DIR}/openrouteservice/src/main/resources/app.config
- mvn -f ${TRAVIS_BUILD_DIR}/openrouteservice/pom.xml install -B
- nohup mvn -f ${TRAVIS_BUILD_DIR}/openrouteservice/pom.xml tomcat7:run &
- mvn -f ${TRAVIS_BUILD_DIR}/openrouteservice/pom.xml tomcat7:run -B &
- travis_wait 15 sleep 15m
- tail -n2000 nohup.out
- curl http://127.0.0.1:8082/openrouteservice-5.0/health
- mvn -f ${TRAVIS_BUILD_DIR}/openrouteservice-api-tests/pom.xml test

Expand Down
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,29 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Changed
### Deprecated

## [5.0.2] - 2019-07-29
### Added
- Added a gpx schema validator into the api-tests, testing all gpx outputs while fixing the bug from (#496)
- Added information for countries a route traverses (#349)
### Fixed
- isochrone reachfactor gives now more realistic results (#325)
- Fixed the wrong gpx header for api v2 (#496)
- Make sure external storages contain entries for all edge IDs (#535)
- Check if BordersStorage exists before calling it in AvoidBordersCoreEdgeFilter
- Take into account shortcut direction in LM selection weighting (#550)
- Updated Matrix api v2 response to correctly display sources (#560)
- Check for null pointer in LM selection weighting (#550)
- Use commas rather than pipes for weighting options in app.config.sample (#564)
- Update point references when point is not found for routing (#567)
### Changed
- Moved walking and hiking flag encoders to the ORS core system (#440)
- Remove route optimization code (#499)
- Reduced distance for neighbourhood point search in isochrones when small isochrones are generated (#494)
- Removed obsolete storages (#536)
- Refactor fallback to preprocessing-independent algorithm for certain routing request params
- Removed some landmark sets as default from app.config.sample
### Deprecated

## [5.0.1] - 2019-04-08
### Added
- CALT routing algorithm - Not for production (Issue #433)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public void testReachfactorAndArea() {
.body("any { it.key == 'type' }", is(true))
.body("any { it.key == 'features' }", is(true))
.body("features[0].properties.area", is(both(greaterThan(6110000f)).and(lessThan(6120000f))))
.body("features[0].properties.reachfactor", is(0.1752f))
.body("features[0].properties.reachfactor", is(0.7007f))
.statusCode(200);
}

Expand All @@ -136,7 +136,7 @@ public void testReachfactorAndAreaAreaUnitsM() {
.body("any { it.key == 'type' }", is(true))
.body("any { it.key == 'features' }", is(true))
.body("features[0].properties.area", is(both(greaterThan(6110000f)).and(lessThan(6120000f))))
.body("features[0].properties.reachfactor", is(0.1752f))
.body("features[0].properties.reachfactor", is(0.7007f))
.statusCode(200);
}

Expand All @@ -155,7 +155,7 @@ public void testReachfactorAndAreaAreaUnitsKM() {
.body("any { it.key == 'type' }", is(true))
.body("any { it.key == 'features' }", is(true))
.body("features[0].properties.area", is(both(greaterThan(6.11f)).and(lessThan(6.12f))))
.body("features[0].properties.reachfactor", is(0.1752f))
.body("features[0].properties.reachfactor", is(0.7007f))
.statusCode(200);
}

Expand Down Expand Up @@ -194,7 +194,7 @@ public void testReachfactorAndAreaAreaUnitsMI() {
.body("any { it.key == 'type' }", is(true))
.body("any { it.key == 'features' }", is(true))
.body("features[0].properties.area", is(both(greaterThan(2.36f)).and(lessThan(2.37f))))
.body("features[0].properties.reachfactor", is(0.1752f))
.body("features[0].properties.reachfactor", is(0.7007f))
.statusCode(200);
}

Expand Down

This file was deleted.

Loading

0 comments on commit 8a0e0ff

Please sign in to comment.