Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions 73.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ There are certain established global content identifiers such as [Book ISBNs](ht
| URLs | "`<URL, normalized, no fragment>`" | "web" |
| Books | "isbn:`<id, without hyphens>`" | "isbn" |
| Geohashes | "geo:`<geohash, lowercase>`" | "geo" |
| OSM Way | "osm:way:`<POI id>`" | "osm" |
| OSM Node | "osm:node:`<Node id>`" | "osm" |
| OSM Relation | "osm:relation:`<Relation id>`" | "osm" |
| Countries | "iso3166:`<code, uppercase>`" | "iso3166" |
| Movies | "isan:`<id, without version part>`" | "isan" |
| Papers | "doi:`<id, lowercase>`" | "doi" |
Expand Down Expand Up @@ -50,6 +53,14 @@ For the webpage "https://myblog.example.com/post/2012-03-27/hello-world" the "i"

Geohashes are a geocoding system that encodes geographic locations into short strings of letters and digits. They MUST be lowercase.

### OpenStreetMap Object References:

- Node: `["i", "osm:node:240949599"]` – https://www.openstreetmap.org/node/240949599
- Way: `["i", "osm:way:5013364"]` – https://www.openstreetmap.org/way/5013364
- Relation: `["i", "osm:relation:62422"]` – https://www.openstreetmap.org/relation/62422

OpenStreetMap object IDs are globally unique identifiers. They use the lowercase format `osm:<type>:<id>` where `<type>` is one of `node`, `way`, or `relation`, and `<id>` is a numeric identifier.

### Countries:

ISO 3166 codes can reference countries (ISO 3166-1 alpha-2) or subdivisions like states/provinces (ISO 3166-2).
Expand Down