-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2a19cbb
commit 3490074
Showing
2 changed files
with
21 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Type: Package | ||
Package: r5r | ||
Title: Rapid Realistic Routing with 'R5' | ||
Version: 1.1.0.9001 | ||
Version: 2.0 | ||
Authors@R: c( | ||
person("Marcus", "Saraiva", , "[email protected]", role = "aut", | ||
comment = c(ORCID = "0000-0001-6218-2338")), | ||
|
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 |
---|---|---|
@@ -1,22 +1,33 @@ | ||
## R CMD check results | ||
|
||
── R CMD check results ───────────────────────────────────────────── r5r 1.1.0 ──── | ||
Duration: 24m 8.8s | ||
── R CMD check results ──────────────────────────────────────── r5r 2.0 ──── | ||
Duration: 29m 21.6s | ||
|
||
0 errors ✔ | 0 warnings ✔ | 0 notes ✔ | ||
|
||
* This is a minor update with bug fixes | ||
|
||
**Breaking changes** | ||
|
||
- r5r uses now JDK 21 or higher (Breaking changes). Closed [#350](https://github.com/ipeaGIT/r5r/issues/350). | ||
- r5r now uses the latest version of R5 V7.1. Closed [#350](https://github.com/ipeaGIT/r5r/issues/350) | ||
|
||
**Major changes** | ||
|
||
- New `isochrone()`function. Closes [#123](https://github.com/ipeaGIT/r5r/issues/123), and addresses requrests in issues [#164](https://github.com/ipeaGIT/r5r/issues/164) and [#328](https://github.com/ipeaGIT/r5r/issues/328). | ||
- New vignette about calculating / visualizing isochrones with `r5r`. | ||
- New vignette with responses to frequently asked questions (FAQ) from `r5r` users. | ||
- r5r now stores R5 Jar file at user dir using `tools::R_user_dir()` | ||
- New function `r5r_cache()` to manage the cache of the R5 Jar file. | ||
- By using the JDK 21, this version of r5r also fixed an incompatibility with MAC ARM processors. Closed [#315](https://github.com/ipeaGIT/r5r/issues/315) | ||
|
||
**Minor changes** | ||
|
||
- The default value of `time_window` is not set to `10` minutes in all functions to avoid weird results reported upstream in R5. Closes [#342](https://github.com/ipeaGIT/r5r/issues/342). | ||
- Removed any mention to `percentiles` parameter in the `expanded_travel_time_matrix()` because this function does not expose this parameter to users. Closes [#343](https://github.com/ipeaGIT/r5r/issues/343). | ||
- Updated vignette on calculating / visualizing accessibility with `r5r`. | ||
- In the `accessibility()` function, the value of `max_trip_duration` is now capped by the max value passed to the `cutoffs` parameter. Closes [#342](https://github.com/ipeaGIT/r5r/issues/348). | ||
- Updated documentation of parameter `max_walk_time` to make it clear that in walk-only trips, whenever `max_walk_time` differs from `max_trip_duration`, the lowest value is considered. Closes [#353](https://github.com/ipeaGIT/r5r/issues/353) | ||
- Updated documentation of parameter `max_bike_time` to make it clear that in bicycle-only trips, whenever `max_bike_time` differs from `max_trip_duration`, the lowest value is considered. Closes [#353](https://github.com/ipeaGIT/r5r/issues/353) | ||
- Improved documentation of parameter `suboptimal_minutes` in the `detailed_itineraries()` function. | ||
- Updated the vignette on time window to explain how this parameter behaves when used in the `detailed_itineraries()` function. | ||
|
||
**Bug Fixes** | ||
- Fixed bug that prevented the use the `output_dir` parameter in the `detailed_itineraries(all_to_all = TRUE)` function. Closes [#327](https://github.com/ipeaGIT/r5r/issues/327) with a contribution ([PR #354](https://github.com/ipeaGIT/r5r/pull/354)) from Luyu Liu. | ||
- Fixed bug that prevented `detailed_itineraries` from working with frequency-based GTFS feeds. It should ONLY work with frequency-based GTFS feeds. | ||
|
||
**New contributors to r5r** | ||
- [Luyu Liu](https://github.com/luyuliu) |