Releases: munterfi/hereR
Releases · munterfi/hereR
hereR 0.2.1
- Enhanced
traffic()
: Clarified thatfrom_dt
andto_dt
have no effect on the traffic flow (product = "flow"
). Traffic flow is always real-time. Detailed documentation of the variables in the return value. - Improved coverage of
testthat
. - Added an
"id"
column to the output ofgeocode()
and removed the id orderedrow.names
in order to be consistent with other functions of the package. Using the"id"
column the addresses to geocode can be joined to the coordinates after geocoding (see #9). - Added an
"id"
column also toautocomplete()
,reverse_geocode()
,route()
,isoline()
,traffic()
andweather()
. Using the"id"
column the result can be joined to the input. - Fixed the handling of failing requests in
.get_content()
. The"id"
column is still in correct order, even if there are failing requests in a function call (see #17). - Added
rownames() <- NULL
to all functions before returning the result. - Renamed the
"city"
column in the returned object ofweather()
to"station"
, as it stands for the name of the nearest meteorological station. - Test for empty geometries in the input POIs and AOIs and throw an error if some are found (see #16).
hereR 0.2.0
- Enhanced
geocode()
: In the case of empty responses the row names match the index of the geocoded addresses. Improved input checks. Option to use autocomplete by settingautocomplete = TRUE
. - Geocoder Autocomplete API: The new feature
autocomplete()
allows autocompleting addresses. - Reverse Geocoder API: The new feature
reverse_geocode()
implements reverse geocoding POIs in order to retrieve suggestions for addresses or landmarks.
hereR 0.1.0
First release of the hereR
package, an sf
-based interface to the HERE REST APIs.
The packages binds to the following HERE APIs:
- Geocoder API: Get coordinates (lng, lat) from addresses.
- Routing API: Routing directions, isolines and travel distance or time matrices, optionally incorporating the current traffic situation.
- Traffic API: Real-time traffic flow and incident information.
- Destination Weather API: Weather forecasts, reports on current weather conditions, astronomical information and weather alerts at a specific location.
Locations and routes are returned as sf
objects and tables as data.table
objects.