makinacorpus/osm-transport-editor

Name: osm-transport-editor

Owner: Makina Corpus

Description: Edit transport relations in OSM

Created: 2014-07-04 10:20:07.0

Updated: 2015-08-23 20:13:40.0

Pushed: 2014-09-05 15:04:00.0

Homepage: http://makinacorpus.github.io/osm-transport-editor/

Size: 1016

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

OSM Transport Editor

This tools is to make it easy to edit osm relations about transport.

I have created this project to fix the Nantes public transport network:

http://makinacorpus.github.io/osm-transport-editor/#/1733024

Technologies

Data Format

Because this is javascript we use json every where so here is the format that is used internally:

A relation that contains other relations:

{
    "type": "FeatureCollection",
    "properties": {
        "id": "1733024",
        "visible": "true",
        "version": "24",
        "changeset": "24081505",
        "timestamp": "2014-07-11T12:52:35Z",
        "user": "toutpt",
        "uid": "1954100"
    },
    "options": {},
    "members": [{
        "type": "relation",
        "ref": "2116454",
        "role": "",
        "name": "1 Beaujoire - François Mitterrand",
        "tags": {
            "air_conditioning": "limited",
            "by_night": "yes",
            "colour": "#00A440",
            "description": "Beaujoire - François Mitterrand",
            "line": "tram",
            "name": "1 Beaujoire - François Mitterrand",
            "network": "TAN",
            "operator": "SEMITAN",
            "ref": "1",
            "route": "tram",
            "route_master": "tram",
            "state": "proposed",
            "supervised": "yes",
            "text_colour": "#FFFFFF",
            "type": "route_master",
            "url": "https://www.tan.fr/servlet/com.univ.collaboratif.utils.LectureFichiergw?ID_FICHIER=30134",
            "wheelchair": "yes"
        }
    },
    ...
    }],
    "features": [],
    "relations": [],
    "tags": {
        "name": "TAN",
        "network": "TAN",
        "operator": "SEMITAN",
        "service": "urban",
        "type": "network",
        "url": "http://www.tan.fr/",
        "wikipedia": "fr:Semitan"
    }
}

A relation that contains ways and node:

{
    "type": "FeatureCollection",
    "properties": {
        "id": "2096890",
        "visible": "true",
        "version": "10",
        "changeset": "24019889",
        "timestamp": "2014-07-08T09:56:03Z",
        "user": "toutpt",
        "uid": "1954100"
    },
    "options": {},
    "members": [{
        "type": "node",
        "ref": "1687882826",
        "role": "stop",
        "name": "Beaujoire"
    },
    ...
    "features": [{
        "type": "Feature",
        "properties": {
            "amenity": "vending_machine",
            "bench": "yes",
            "name": "Beaujoire",
            "operator": "SEMITAN",
            "payment:coins": "yes",
            "payment:debit_cards": "yes",
            "railway": "tram_stop",
            "ref": "BJO59",
            "shelter": "yes",
            "tactile_paving": "yes",
            "vending": "public_transport_tickets",
            "wheelchair": "yes"
        },
        "id": "1687882826",
        "geometry": {
            "type": "Point",
            "coordinates": [-1.5260215, 47.2587955]
        }
    },
    ...
    }],
    "relations": [],
    "tags": {
        "air_conditioning": "limited",
        "bicycle": "limited",
        "by_night": "yes",
        "colour": "#00A440",
        "description": "Beaujoire - François Mitterrand",
        "destination": "François Mitterrand",
        "from": "Beaujoire",
        "line": "tram",
        "name": "1 Beaujoire - François Mitterrand",
        "network": "TAN",
        "note:en": "Please keep nodes and ways in the right order",
        "note:fr": "Merci de garder les n?uds et les tronçons dans le bon ordre",
        "operator": "SEMITAN",
        "ref": "1",
        "route": "tram",
        "state": "proposed",
        "text_colour": "#FFFFFF",
        "to": "François Mitterrand",
        "type": "route",
        "url": "https://www.tan.fr/html/plans/14H1/lignes/01.pdf",
        "via": "Commerce",
        "wheelchair": "yes"
    }
}

Credits

Companies
People

This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.