Skip to content
Merged
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
4 changes: 2 additions & 2 deletions _opl_file_format/05_examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ Count how many objects were created in each hour of the day:

Find all closed ways:

egrep '^w' data.osm.opl | egrep 'N(n[0-9]+),.*\1 '
egrep '^w' data.osm.opl | egrep 'N(n[0-9]+),.*\1'

Find all ways tagged with `area=yes` that are not closed:

egrep '^w' data.osm.opl | egrep 'area=yes' | egrep -v 'N(n[0-9]+),.*\1 '
egrep '^w' data.osm.opl | egrep 'area=yes' | egrep -v 'N(n[0-9]+),.*\1'

Find all users who have created post boxes:

Expand Down