User:Mga geo/eau

From OpenStreetMap Wiki
Jump to navigation Jump to search

Les tags

  • Cours d'eau
  • le linéaire : waterway=river / stream / canal / drain
  • le surfacique : waterway=riverbank
  • Lacs, étangs... : natural=water

Comment cartographier

Lacs, étangs...

simple

<way id="1">
  <tag k="natural" v="water" />
  <tag k="name" v="Lac xxx" />
</way>

avec une île

<relation id="1">
  <tag k="type" v="multipolygon" />
  <tag k="natural" v="water" />
  <tag k="name" v="La Cantache" />
  <member type="way" id="1" role="outer" />
  <member type="way" id="2" role="inner" />
</relation>
<way id="1">
  <tag k="natural" v="water" />
  <tag k="name" v="La Cantache" />
</way>
<way id="2">
  <tag k="name" v="île aux singes" />
</way>

en plusieurs morceaux

<relation id="1">
  <tag k="type" v="multipolygon" />
  <tag k="natural" v="water" />
  <tag k="name" v="La Cantache" />
  <member type="way" id="1" role="outer" />
  <member type="way" id="2" role="outer" />
</relation>
<way id="1">
  <tag k="natural" v="water" />
  <tag k="name" v="La Cantache est" />
</way>
<way id="2">
  <tag k="name" v="La Cantache ouest" />
</way>