blob: f4c20d29f5ac8fadda94fb92eb2ff808abbe81b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#! /bin/sh
cat <<EOF
COMMANDS:
osm.help
util.osm.edit
osm.api.changeset.create create a new changeset and return its ID
osm.api.changeset.update <changeset ID> update changeset with new comment
osm.api.changeset.upload <changeset ID> <osc file> upload osc file to the given changeset
osm.api.changeset.add <changeset ID> STDIN=osm element, add it into changeset
osm.api.changeset.close <changeset ID> close the given changeset
osm.api.fetch <element type> <element ID>
osm.api.fetch.full like .fetch, but return with all referenced elements
osm.api.fetch.history <element type> <element ID>
osm.api.member.relation <element type> <element ID> <member type> get first relations reference it as member type
osm.api.referenced.relation <element type> <element ID> get all relations reference this element
osm.api.referenced.way <element type> <element ID> get all ways reference this element
osm.api.upload.to
osm.file.cat
osm.file.get
osm.file.get.full
osm.file.query
osm.list.ids
osm.list.tag
osm.list.tags
osm.get.id
osm.query
osm.member.relation
osm.pbf.update
osm.osm.update
EOF
|