All Projects → GIScience → Openrouteservice R

GIScience / Openrouteservice R

Licence: apache-2.0
🌐 R package to query openrouteservice.org

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to Openrouteservice R

Openrouteservice App
🚙 The open source route planner app with plenty of features.
Stars: ✭ 187 (+228.07%)
Mutual labels:  api, routing, openstreetmap
Gocertcenter
CertCenter API Go Implementation
Stars: ✭ 21 (-63.16%)
Mutual labels:  api, sdk
Themoviedb
A node.js module with support for both callbacks and promises to provide access to the TMDb API
Stars: ✭ 5 (-91.23%)
Mutual labels:  api, sdk
Waliyun
阿里云Node.js Open API SDK(完整版)
Stars: ✭ 40 (-29.82%)
Mutual labels:  api, sdk
Swiftinstagram
Instagram API client written in Swift
Stars: ✭ 570 (+900%)
Mutual labels:  api, sdk
Pymessager
Python API to develop chatbot on Facebook Messenger Platform
Stars: ✭ 580 (+917.54%)
Mutual labels:  api, sdk
Vainglory
(*DEPRECATED*: The API no longer exists, so this will no longer work) A Javascript API Client wrapper for Vainglory
Stars: ✭ 32 (-43.86%)
Mutual labels:  api, sdk
Osrm Backend
Open Source Routing Machine - C++ backend
Stars: ✭ 4,716 (+8173.68%)
Mutual labels:  routing, openstreetmap
Nodejs
Everything related to the Node.js ecosystem for the commercetools platform.
Stars: ✭ 47 (-17.54%)
Mutual labels:  api, sdk
Urbansprawl
Open framework for calculating spatial urban sprawl indices and performing disaggregated population estimates using open data
Stars: ✭ 48 (-15.79%)
Mutual labels:  gis, openstreetmap
Android Pdk
Pinterest Android SDK
Stars: ✭ 49 (-14.04%)
Mutual labels:  api, sdk
Dorita980
Unofficial iRobot Roomba and Braava (i7/i7+, 980, 960, 900, e5, 690, 675, m6, etc) node.js library (SDK) to control your robot
Stars: ✭ 523 (+817.54%)
Mutual labels:  api, sdk
Koop
🔮 Transform, query, and download geospatial data on the web.
Stars: ✭ 505 (+785.96%)
Mutual labels:  api, gis
Openrouteservice
🌍 The open source route planner api with plenty of features.
Stars: ✭ 614 (+977.19%)
Mutual labels:  routing, openstreetmap
App
Directus Admin Application — An Intuitive WebApp for Managing Database Content
Stars: ✭ 464 (+714.04%)
Mutual labels:  api, sdk
Aeris Ios Library
Contains a demo project utilizing the AerisWeather SDK for iOS to help you get started with using our library.
Stars: ✭ 21 (-63.16%)
Mutual labels:  api, sdk
Modio Unity
Unity Plugin for integrating mod.io - a modding API for game developers
Stars: ✭ 53 (-7.02%)
Mutual labels:  api, sdk
Go Binance
A Go SDK for Binance API
Stars: ✭ 441 (+673.68%)
Mutual labels:  api, sdk
Mapsui
Mapsui is a .NET Map component for WPF, Xamarin.Forms, Xamarin.Android, Xamarin.iOS and UWP
Stars: ✭ 447 (+684.21%)
Mutual labels:  gis, openstreetmap
Yii2 Nested Rest
Nested routing support to the Yii RESTful API framework
Stars: ✭ 45 (-21.05%)
Mutual labels:  api, routing

Travis-CI Build Status AppVeyor Build Status Coverage Status lifecycle

openrouteservice R client

openrouteservice R package provides easy access to the openrouteservice (ORS) API from R. It allows you to painlessly consume the following services:

Disclaimer

By using this package, you agree to the ORS terms and conditions.

Installation

The package is not yet available from CRAN, but you can install the development version directly from GitHub.

# install.packages("remotes")
remotes::install_github("GIScience/openrouteservice-r")

Get started

See the package vignette for an overview of the offered functionality.

Local ORS instance

The default is to fire any requests against the free public services at <api.openrouteservice.org>. In order to query a different openrouteservice instance, say a local one, set

options(openrouteservice.url = "http://localhost:8080/ors")

If necessary, endpoint configuration can be further customized through openrouteservice.paths which specifies a named list of paths. The defaults are equivalent of having

options(openrouteservice.paths = list(directions = "v2/directions",
                                      isochrones = "v2/isochrones",
                                      matrix = "v2/matrix",
                                      geocode = "geocode",
                                      pois = "pois",
                                      elevation = "elevation",
                                      optimization = "optimization"))

Package News

version 0.4.0

NEW FEATURES

  • Enable optimization endpoint.

version 0.3.3

BUG FIXES

  • Fixed resolving of URL paths to endpoints.

version 0.3.2

NEW FEATURES

  • More descriptive messages for API response errors.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].