All Projects → Esri → Node Geoservices Adaptor

Esri / Node Geoservices Adaptor

Licence: apache-2.0
This is a node.js implementation of the ArcGIS REST API

Programming Languages

javascript
184084 projects - #8 most used programming language

node-geoservices-adaptor

This is a node.js implementation of the ArcGIS REST API.

It allows simple read-only access by ArcGIS tools, apps, and APIs, including ArcGIS Runtime SDKs (iOS, Android, Mac OS X, Windows Phone, etc.), ArcGIS API for JavaScript, esri-leaflet, ArcGIS Desktop etc.

It also provides HTML to let users browse available services and view them in maps.

View a live demo.

Sample Image

Introduction

The application handles ArcGIS REST API requests to custom "data providers", and returns their output in ArcGIS JSON format.

Here are two sample "data providers":

  • CityBikes: Provide data from http://api.citybik.es.
  • GeoHub: Provide data from geoJSON files stored in GitHub Repositories and Gists.
  • CurrentWeather Provide data from NOAA weather stations across the U.S.

The framework lets you build your own "data providers":

  1. Subclass dataproviderbase.DataProviderBase. Override only what you need to.
  2. Add instances of your subclass to the dataProviders array in index.js.

At a glance, this is how it works:

Structure

  • urls: Construct Adaptor and Template REST Endpoints.
  • output: Construct JSON output. Format HTML output for JSON.
  • dataproviderbase: Describe the service (fields, idField, nameField, etc.) and return features when requested. Inherit from this and selectively override to add a data provider. It also provides an in-memory GeoStore caching framework which data providers may opt in to.

By using the Esri Terraformer library's GeoStore component, the application is able to support spatial caching and indexing for data providers. Terraformer also provides outputting in geoJSON by specifying f=geojson.

Note: This project is very much a proof of concept on how to implement the ArcGIS REST API. Another good example can be found in Koop.

Requirements

Installation

  1. Clone the repo and run npm update in the repo folder
  2. Run the node server with node index
  3. Browse to http://localhost:1337

Sample Data Providers

Citybikes

The Citybikes sample data provider makes use of the awesome API at CityBik.es providing bike share data (almost) globally. This sample Data Provider adapts the data into Geoservices format output. The root REST endpoint for the CityBikes data provider can be found live here (this is where you might point ArcCatalog): http://geonode.geeknixta.com/citybikes/rest/services

GeoHub

Making use of the GeoHub repo, this sample provider allows a client to request geoJSON files from either a GitHub repository (example) or from a GitHub gist (example). This sample uses the dataproviderbase GeoStore cache framework. For more details, see the GeoHub Plugin Readme.

Known Limitations

  • Only a limited subset of the Geoservices REST Specification is implemented.
  • Only spatial references 4326 and 102100 are supported.
  • The application will convert from 4326 to 102100 only.
  • Queries only work against the layer end point. Query (Feature Service) is declared as a capability but not yet implemented.
  • HTML Browsing is not available for Query endpoints. All queries return JSON.
  • Only a subset of Query (Feature Service\Layer) is implemented:
    • objectIds
    • outSR (4326 and 102100 only)
    • returnIdsOnly
    • returnCountOnly
  • Authentication and tokenization is not implemented. All services are considered public.

Resources

Issues

Find a bug or want to request a new feature? Please let us know by submitting an Issue.

Contributing

Anyone and everyone is welcome to contribute.

Licensing

Copyright 2013 Esri

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

A copy of the license is available in the repository's license.txt file. [](Esri Tags: NodeJS ExpressJS GeoServices REST CityBikes) [](Esri Language: JavaScript)

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].