All Projects → mapbox → Carmen

mapbox / Carmen

Licence: other
Mapbox Vector Tile based geocoder with support for swappable data sources

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Carmen

python-opencage-geocoder
Python module to access the OpenCage geocoding API
Stars: ✭ 54 (-82.12%)
Mutual labels:  geocoding
WhatsMissingInGeoparsing
The accompanying code and data for the Springer 2017 publication "What's missing in geographical parsing?" in Language Resources and Evaluation.
Stars: ✭ 15 (-95.03%)
Mutual labels:  geocoding
nominatim-docker
Docker image for Nominatim
Stars: ✭ 33 (-89.07%)
Mutual labels:  geocoding
NominatimGeocoderBackend
UnifiedNlp geocoder backend that uses the OSM Nominatim service
Stars: ✭ 49 (-83.77%)
Mutual labels:  geocoding
geoservices-js
Deprecated - please consider using @esri/arcgis-rest-js
Stars: ✭ 53 (-82.45%)
Mutual labels:  geocoding
Mapnews
Today's News on a Map
Stars: ✭ 20 (-93.38%)
Mutual labels:  geocoding
geocoding
地理编码技术,提供地址标准化和相似度计算。
Stars: ✭ 148 (-50.99%)
Mutual labels:  geocoding
Fccurrentlocationgeocoder
iOS Geocoder for forward geocode and reverse geocode user's current location using a block-based syntax. 📍🌍
Stars: ✭ 268 (-11.26%)
Mutual labels:  geocoding
maps-app-dotnet
Your organization's suite of cross platform mapping apps built with the ArcGIS Runtime SDK for .NET
Stars: ✭ 20 (-93.38%)
Mutual labels:  geocoding
geoclient
R interface to NYC's Geoclient REST API
Stars: ✭ 13 (-95.7%)
Mutual labels:  geocoding
article-tagging
Natural Language Processing of Chicago news articles
Stars: ✭ 41 (-86.42%)
Mutual labels:  geocoding
geoparser
⛔ ARCHIVED ⛔ R package for the Geoparser.io API
Stars: ✭ 38 (-87.42%)
Mutual labels:  geocoding
maps-app-ios
Your organisation's mapping app built with the Runtime SDK for iOS
Stars: ✭ 16 (-94.7%)
Mutual labels:  geocoding
country-bounding-boxes
A list of ISO 3166-1 country codes and their bounding boxes.
Stars: ✭ 26 (-91.39%)
Mutual labels:  geocoding
lieu
Dedupe/batch geocode addresses and venues around the world with libpostal
Stars: ✭ 73 (-75.83%)
Mutual labels:  geocoding
rrgeo
A fast, offline, reverse geocoder
Stars: ✭ 76 (-74.83%)
Mutual labels:  geocoding
Xponents
Geographic Place, Date/time, and Pattern entity extraction toolkit along with text extraction from unstructured data and GIS outputters.
Stars: ✭ 39 (-87.09%)
Mutual labels:  geocoding
Gisgraphy
geocoding and geolocalisation webservices for Geonames, Openstreetmap, Openaddresses, Tiger and quattroshapes data
Stars: ✭ 275 (-8.94%)
Mutual labels:  geocoding
hereR
R package that provides an interface to the HERE REST APIs: Geocoder API, Routing API, Traffic API, Public Transit API and Destination Weather API. Locations and routes are returned as 'sf' objects.
Stars: ✭ 72 (-76.16%)
Mutual labels:  geocoding
kirby-locator
A simple map & geolocation field, built on top of open-source services and Mapbox. Kirby 3 only.
Stars: ✭ 83 (-72.52%)
Mutual labels:  geocoding

Build Status

codecov

carmen

Mapnik vector tile-based geocoder with support for swappable data sources. This is an implementation of some of the concepts of Error-Correcting Geocoding by Dennis Luxen.

Depends

Install

npm install

Carmen no longer ships with any default or sample data. Sample data will be provided in a future release.

API

For a simplified example of using the carmen API, see the example folder in this repository.

For more detail about specific elements of the API (and how to use them directly), see the API Docs.

Command-line scripts

Carmen comes with command line utilities that also act as examples of API usage.

To query the default indexes:

./bin/carmen-index.js --query="new york"

To analyze an index:

./bin/carmen-analyze.js tiles/01-ne.country.mbtiles

Documentation

Carmen documentation has three parts:

General Documentation

Topic-based documentation is located in the docs directory, organized by topic. These documents are meant to cover high-level design or architectural concepts rather than the code itself. It also includes a glossary of frequently-used vocabulary.

Example Project

The example project is located in the example directory. It is a step-by-step, annotated tutorial for basic usage of carmen.

API Documentation

API documentation is written as JSDoc comments in the source code. It is also available as a markdown-formatted document: docs/api.md. This document is generated using documentationjs, and should be updated after any JSDoc comment changes:

yarn build-docs

API Documentation Style Guide

  • Classes, methods, events, and anything else must be documented with JSDoc comments.
  • Text within JSDoc comments may use markdown formatting. Code identifiers must be surrounded by `backticks`.
  • Documentation must be written in grammatically correct sentences ending with periods.
  • Documentation descriptions must contain more information than what is obvious from the identifier and JSDoc metadata.
  • Class descriptions should describe what the class is, or what its instances are. They do not document the constructor, but the class. They should begin with either a complete sentence or a phrase that would complete a sentence beginning with "A T is..." or "The T class is..." Examples: "Lists are ordered indexed dense collections." "A class used for asynchronous computations."
  • Function descriptions should begin with a third person singular present tense verb, as if completing a sentence beginning with "This function..." If the primary purpose of the function is to return a value, the description should begin with "Returns..." Examples: "Returns the layer with the specified id." "Sets the map's center point."
  • @param, @property, and @returns descriptions should be capitalized and end with a period. They should begin as if completing a sentence beginning with "This is..." or "This..."
  • Functions that do not return a value (return undefined), should not have a @returns annotation.
  • Member descriptions should document what a member represents or gets and sets. They should also indicate whether the member is read-only.
  • Event descriptions should begin with "Fired when..." and so should describe when the event fires. Event entries should clearly document any data passed to the handler, with a link to MDN documentation of native Event objects when applicable.
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].