Changes between Version 36 and Version 37 of Help/Concepts/Object


Ignore:
Timestamp:
2016-04-17T05:48:00+02:00 (10 years ago)
Author:
openstreetmap.org-user-d1g
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Help/Concepts/Object

    v36 v37  
    33= Objects - The basic building blocks of OSM data and maps =
    44
    5 JOSM helps you to enter data about real-world objects in the OSM geo-database. Despite the overwhelming complexity of real-world objects you can map, JOSM provides only three kinds of objects as basic building blocks for maps: [[Image(source:trunk/images/data/node.png,top)]] **nodes**, [[Image(source:trunk/images/data/way.png,middle)]] **ways** and [[Image(source:trunk/images/data/relation.png,middle)]] **relations**.
     5JOSM helps you to enter data about real-world objects in the OSM geo-database. Despite the overwhelming complexity of real-world objects you can map, JOSM provides only three kinds of objects as basic building blocks for maps: [[Image(source:trunk/images/data/node.png,top,nolink)]] **nodes**, [[Image(source:trunk/images/data/way.png,middle,nolink)]] **ways** and [[Image(source:trunk/images/data/relation.png,middle)]] **relations**.
    66
    77You can assign **tags** to objects. It's the assigned set of tags which makes a node representing a restaurant different from a node representing a church, or a way representing a residential road different from a ways representing a river, or a relation representing a bus route different from a relation representing a cycling route.
     
    1111== Nodes, ways, and relations == #NodesWaysRelations
    1212=== Nodes ===
    13 [[Image(source:trunk/images/data/node.png,20,bottom,margin-right=15)]] A **node** is an individual point with a defined position.
     13[[Image(source:trunk/images/data/node.png,20,bottom,margin-right=15,nolink)]] A **node** is an individual point with a defined position.
    1414
    1515=== Ways ===
    16 [[Image(source:trunk/images/data/way.png,20,middle,margin-right=15,margin-bottom=5)]] A **way** is a sequence of nodes. Despite its name a way doesn't represent ways in the real-world only. An OSM **way** is also used to represent a river, the boundaries of a country, or even a building.
     16[[Image(source:trunk/images/data/way.png,20,middle,margin-right=15,margin-bottom=5,nolink)]] A **way** is a sequence of nodes. Despite its name a way doesn't represent ways in the real-world only. An OSM **way** is also used to represent a river, the boundaries of a country, or even a building.
    1717
    1818==== Closed Ways (Areas) ==== #ClosedWays
    19 [[Image(source:trunk/images/data/closedway.png,20,middle,margin-right=15,margin-bottom=5)]] If a **way** is closed, i.e. if the last node is the same as  the first node, it is also called an **area**.
     19[[Image(source:trunk/images/data/closedway.png,20,middle,margin-right=15,margin-bottom=5,nolink)]] If a **way** is closed, i.e. if the last node is the same as  the first node, it is also called an **area**.
    2020
    2121=== Relations ===
    22 [[Image(source:trunk/images/data/relation.png,20,middle,margin-right=15,margin-bottom=5)]] A **relation** is an sequence of other objects, for instance a sequence of ways (representing road segments) and nodes (representing bus stops) which represent a bus route. Each object participating in a **relation** can be assigned a **role**, for instance `stop` for a bus stop in the bus route, or `platform` for platforms related to according stop positions.
     22
     23==== Simple explanation ====
     24[[Image(source:trunk/images/data/relation.png,20,middle,margin-right=15,margin-bottom=5,nolink)]]  A **relation** is an sequence of other nodes and ways.
     25Every relation can have their own "tags".
     26Relations can be used as members in other relations (nested or hierarchical structures).
     27Each object participating in a **relation** can be assigned a **role**, for instance `stop` for a bus stop in the bus route, or `platform` for platforms related to according stop positions.
     28
     29
     30There [http://wiki.openstreetmap.org/wiki/Types_of_relation many types of relations], but most popular are
     31
     32===== type=multipolygon =====
     33
     34A water object (natural=water), a building (building=*) or administrative boundary (admin_level tag).
     35
     36(stub)
     37
     38===== type=route =====
     39
     40Used to describe bus routes and train routes along other transportation services.
     41(stub)
    2342
    2443== Tags ==