├── .clang-tidy ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── config.yml ├── actions │ ├── build │ │ └── action.yml │ ├── cmake-windows │ │ └── action.yml │ ├── cmake │ │ └── action.yml │ ├── ctest │ │ └── action.yml │ ├── install-from-git │ │ └── action.yml │ └── install-ubuntu │ │ └── action.yml └── workflows │ ├── ci.yml │ └── clang-tidy.yml ├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── cmake ├── FindLZ4.cmake ├── FindOsmium.cmake ├── FindProtozero.cmake ├── run_test_compare_output.cmake ├── run_test_compare_output_return.cmake └── test_install.cmake ├── export-example-config ├── default-config.json └── example-config.json ├── extract-example-config ├── README.md ├── berlin-feature-collection.geojson ├── berlin.geojson ├── berlin.poly ├── brandenburg.poly ├── extracts.json ├── hamburg.poly └── karlsruhe.osm.bz2 ├── fix-formatting.sh ├── iwyu.imp ├── man ├── CMakeLists.txt ├── common-options.md ├── input-options.md ├── manpage.template ├── osmium-add-locations-to-ways.md ├── osmium-apply-changes.md ├── osmium-cat.md ├── osmium-changeset-filter.md ├── osmium-check-refs.md ├── osmium-create-locations-index.md ├── osmium-derive-changes.md ├── osmium-diff.md ├── osmium-export.md ├── osmium-extract.md ├── osmium-file-formats.md ├── osmium-fileinfo.md ├── osmium-getid.md ├── osmium-getparents.md ├── osmium-index-types.md ├── osmium-merge-changes.md ├── osmium-merge.md ├── osmium-output-headers.md ├── osmium-query-locations-index.md ├── osmium-removeid.md ├── osmium-renumber.md ├── osmium-show.md ├── osmium-sort.md ├── osmium-tags-count.md ├── osmium-tags-filter.md ├── osmium-time-filter.md ├── osmium.md ├── output-options.md └── progress-options.md ├── osmium-wrapper.in ├── scripts └── osm-history-splitter2osmium-extract-config.sh ├── src ├── CMakeLists.txt ├── cmd.cpp ├── cmd.hpp ├── cmd_factory.cpp ├── command_add_locations_to_ways.cpp ├── command_add_locations_to_ways.hpp ├── command_apply_changes.cpp ├── command_apply_changes.hpp ├── command_cat.cpp ├── command_cat.hpp ├── command_changeset_filter.cpp ├── command_changeset_filter.hpp ├── command_check_refs.cpp ├── command_check_refs.hpp ├── command_create_locations_index.cpp ├── command_create_locations_index.hpp ├── command_derive_changes.cpp ├── command_derive_changes.hpp ├── command_diff.cpp ├── command_diff.hpp ├── command_export.cpp ├── command_export.hpp ├── command_extract.cpp ├── command_extract.hpp ├── command_fileinfo.cpp ├── command_fileinfo.hpp ├── command_getid.cpp ├── command_getid.hpp ├── command_getparents.cpp ├── command_getparents.hpp ├── command_help.cpp ├── command_help.hpp ├── command_merge.cpp ├── command_merge.hpp ├── command_merge_changes.cpp ├── command_merge_changes.hpp ├── command_query_locations_index.cpp ├── command_query_locations_index.hpp ├── command_removeid.cpp ├── command_removeid.hpp ├── command_renumber.cpp ├── command_renumber.hpp ├── command_show.cpp ├── command_show.hpp ├── command_sort.cpp ├── command_sort.hpp ├── command_tags_count.cpp ├── command_tags_count.hpp ├── command_tags_filter.cpp ├── command_tags_filter.hpp ├── command_time_filter.cpp ├── command_time_filter.hpp ├── commands.cpp ├── exception.hpp ├── export │ ├── export_format.hpp │ ├── export_format_json.cpp │ ├── export_format_json.hpp │ ├── export_format_pg.cpp │ ├── export_format_pg.hpp │ ├── export_format_text.cpp │ ├── export_format_text.hpp │ ├── export_handler.cpp │ ├── export_handler.hpp │ ├── options.hpp │ └── ruleset.hpp ├── extract │ ├── extract.cpp │ ├── extract.hpp │ ├── extract_bbox.cpp │ ├── extract_bbox.hpp │ ├── extract_polygon.cpp │ ├── extract_polygon.hpp │ ├── geojson_file_parser.cpp │ ├── geojson_file_parser.hpp │ ├── geometry_util.cpp │ ├── geometry_util.hpp │ ├── osm_file_parser.cpp │ ├── osm_file_parser.hpp │ ├── poly_file_parser.cpp │ ├── poly_file_parser.hpp │ ├── strategy.hpp │ ├── strategy_complete_ways.cpp │ ├── strategy_complete_ways.hpp │ ├── strategy_complete_ways_with_history.cpp │ ├── strategy_complete_ways_with_history.hpp │ ├── strategy_simple.cpp │ ├── strategy_simple.hpp │ ├── strategy_smart.cpp │ └── strategy_smart.hpp ├── id_file.cpp ├── id_file.hpp ├── io.cpp ├── main.cpp ├── option_clean.cpp ├── option_clean.hpp ├── util.cpp ├── util.hpp └── version.cpp.in ├── test ├── CMakeLists.txt ├── add-locations-to-ways │ ├── CMakeLists.txt │ ├── input-rel.osm │ ├── input.osm │ ├── output-n.osm │ ├── output-rel.osm │ └── output.osm ├── apply-changes │ ├── CMakeLists.txt │ ├── input-change-only-version.osc │ ├── input-change.osc │ ├── input-data-low.osm │ ├── input-data.osm │ ├── input-history.osh │ ├── input-history.osm │ ├── input-patch-old-version.osc │ ├── input-patch-old-version.osh │ ├── input-redact-and-update.osc │ ├── input-redact-and-update.osh │ ├── input-redact-metadata.osc │ ├── input-redact-metadata.osh │ ├── input-version+timestamp.osm │ ├── input-version.osc │ ├── output-data-low.osm │ ├── output-data.osm │ ├── output-history.osh │ ├── output-patch-old-version.osh │ ├── output-redact-and-update.osh │ ├── output-redact-metadata.osh │ ├── output-version-applied-on-all.osm │ ├── output-version-applied-on-version+timestamp-low.osm │ └── output-version-applied-on-version+timestamp.osm ├── cat │ ├── CMakeLists.txt │ ├── input1.osm │ ├── input1.osm.bz2 │ ├── input1.osm.gz │ ├── input1.osm.pbf │ ├── input2.osm │ ├── output-cat12.osm │ ├── output-cat21.osm │ ├── output1.osm.opl │ └── test_setup.cpp ├── changeset-filter │ ├── CMakeLists.txt │ ├── input-open.osm │ ├── input1.osm │ ├── output-empty.osm │ ├── output-open.osm │ ├── output1-all.osm │ ├── output1-first.osm │ └── output1-second.osm ├── check-refs │ ├── CMakeLists.txt │ ├── fail-n-in-r.osm │ ├── fail-n-in-w.osm │ ├── fail-r-in-r-1.osm │ ├── fail-r-in-r-2.osm │ ├── fail-w-in-r.osm │ ├── okay-r-in-r.osm │ ├── okay.osm │ └── way-okay.osm ├── derive-changes │ ├── CMakeLists.txt │ ├── input1-only-version-timestamp.osm │ ├── input1-only-version.osm │ ├── input1.osm │ ├── input2-all-with-relation.osm │ ├── input2-only-version-timestamp.osm │ ├── input2-only-versions.osm │ ├── input2.osm │ ├── output-2-only-version-timestamp.osc │ ├── output-2-only-version.osc │ ├── output-2-version-with-all.osc │ ├── output-2-version-with-version-timestamp.osc │ ├── output-incr-version.osc │ ├── output-keep-details.osc │ └── output.osc ├── diff │ ├── CMakeLists.txt │ ├── input1.osm │ ├── input1uid.osm │ ├── input2.osm │ ├── input2uid.osm │ ├── output-c.opl │ ├── output-compact │ ├── output-compact-c │ ├── output-compact-c-nouid │ ├── output-compact-c-nouid-opl │ ├── output-empty │ ├── output-same │ ├── output.opl │ └── test_setup.cpp ├── export │ ├── CMakeLists.txt │ ├── config-empty-empty.json │ ├── config-empty-tag.json │ ├── config-empty-tagx.json │ ├── config-false-false.json │ ├── config-null-null.json │ ├── config-null-tag.json │ ├── config-tag-empty.json │ ├── config-tag-null.json │ ├── config-tag-tag.json │ ├── config-tagx-empty.json │ ├── config-tagx-tagx.json │ ├── config-true-true.json │ ├── config-undefined.json │ ├── empty-tag.txt │ ├── input-chars.osm │ ├── input-incomplete-rel-missing-way.osm │ ├── input-incomplete-relation.osm │ ├── input-missing-node.osm │ ├── input-mp.osm │ ├── input-single-node-way.osm │ ├── input.osm │ ├── output-attr.geojson │ ├── output-chars.geojson │ ├── output-cnt.geojsonseq │ ├── output-empty.geojson │ ├── output-incomplete-relation.geojson │ ├── output-missing-node.geojson │ ├── output-mp.geojson │ ├── output-uid.geojsonseq │ ├── output-untagged.pg │ ├── output.geojson │ ├── output.geojsonseq │ ├── output.pg │ ├── tag-empty.txt │ ├── tag-tag.txt │ ├── way-all-n.txt │ ├── way-all.txt │ ├── way-empty-tag.txt │ ├── way-empty-tagx.txt │ ├── way-none.txt │ ├── way-null-tag.txt │ ├── way-tag-empty.txt │ ├── way-tag-null.txt │ ├── way-tag-tag.txt │ ├── way-tagx-empty.txt │ ├── way-tagx-tagx.txt │ └── way.osm ├── extract │ ├── CMakeLists.txt │ ├── antimeridian.opl │ ├── config.json │ ├── empty-root.geojson │ ├── empty.geojson │ ├── empty.osm.opl │ ├── empty.poly │ ├── input1.osm │ ├── input64.osm │ ├── invalid-root.geojson │ ├── invalid.geojson │ ├── missing-end-polygon.poly │ ├── missing-end-ring.poly │ ├── multipolygon.osm.opl │ ├── no-polygon.osm.opl │ ├── one-line.poly │ ├── output-antimeridian-both.opl │ ├── output-antimeridian-east.opl │ ├── output-antimeridian-west.opl │ ├── output-clean.osm │ ├── output-clean64.osm │ ├── output-complete-ways-norels.osm │ ├── output-complete-ways-norels64.osm │ ├── output-complete-ways.osm │ ├── output-complete-ways64.osm │ ├── output-simple.osm │ ├── output-simple64.osm │ ├── output-smart-nonmp.osm │ ├── output-smart-nonmp64.osm │ ├── output-smart.osm │ ├── output-smart64.osm │ ├── polygon-crlf.poly │ ├── polygon-one-outer.poly │ ├── polygon-outer-inner.poly │ ├── polygon-russia-all.geojson │ ├── polygon-russia-east.geojson │ ├── polygon-russia-reverse.geojson │ ├── polygon-russia-west.geojson │ ├── polygon-two-outer.poly │ ├── polygon-two-ways.osm.opl │ ├── polygon-us-alaska-no-feature.geojson │ ├── polygon-us-alaska.geojson │ ├── polygon-us-alaska.poly │ ├── polygon-way.osm.opl │ ├── test_unit.cpp │ ├── two-line.poly │ ├── two-polygons-empty-line.poly │ ├── two-polygons.poly │ ├── w42394837.opl │ ├── w42394837.osm │ ├── w46113981.opl │ ├── w46113981.osm │ └── wrong-geometry-type.geojson ├── fileinfo │ ├── CMakeLists.txt │ ├── fi1-result.json │ ├── fi1-result.txt │ ├── fi1.osm │ ├── fi2.osm │ └── fi3.osm ├── formats │ ├── CMakeLists.txt │ ├── empty-nocompression.osm.pbf │ ├── empty-nodensenodes-nometadata.osm.pbf │ ├── empty-nodensenodes.osm.pbf │ ├── empty-nometadata.osm.pbf │ ├── empty.osm │ ├── empty.osm.opl │ ├── empty.osm.pbf │ ├── f1-nocompression.osm.pbf │ ├── f1-nodensenodes-nometadata.osm.pbf │ ├── f1-nodensenodes.osm.pbf │ ├── f1-nometadata.osm.pbf │ ├── f1.osm │ ├── f1.osm.opl │ └── f1.osm.pbf ├── getid │ ├── CMakeLists.txt │ ├── idfile │ ├── in10.id │ ├── in10.osm │ ├── in19.id │ ├── in19.osm │ ├── in21.id │ ├── in21.osm │ ├── in29.id │ ├── in29.osm │ ├── in30.id │ ├── in30.osm │ ├── in31.id │ ├── in31.osm │ ├── in32.id │ ├── in32.osm │ ├── in39.id │ ├── in39.osm │ ├── input.osm │ ├── out-empty.osm │ ├── out10.osm │ ├── out21.osm │ ├── out30.osm │ ├── out31.osm │ ├── out32.osm │ ├── output-file.osm │ ├── output.osm │ ├── relloop-out.osm │ ├── relloop.id │ ├── relloop.osm │ ├── source-no-rr.osm │ └── source.osm ├── getparents │ ├── CMakeLists.txt │ ├── input.osm │ ├── out-n10-s.osm │ ├── out-n10.osm │ ├── out-n12-s.osm │ ├── out-n12.osm │ ├── out-w20-s.osm │ └── out-w20.osm ├── help │ └── CMakeLists.txt ├── include │ ├── catch.hpp │ └── test.hpp ├── io │ ├── Makefile.in │ └── input.osm ├── merge-changes │ ├── CMakeLists.txt │ ├── change1-only-version.osc │ ├── change1.osc │ ├── change2-only-version.osc │ ├── change2.osc │ ├── merged-both-only-version.osc │ ├── merged-first-only-version.osc │ ├── merged-second-only-version.osc │ ├── merged.osc │ ├── simplified-both-only-version.osc │ ├── simplified-first-only-version.osc │ ├── simplified-second-only-version.osc │ └── simplified.osc ├── merge │ ├── CMakeLists.txt │ ├── empty.osm │ ├── input1-only-version.osm │ ├── input1.osm │ ├── input2-only-version.osm │ ├── input2.osm │ ├── input3.osm │ ├── output-same-ids.osm │ ├── output1.osm │ ├── output2-12-only-version.osm │ ├── output2.osm │ ├── output3.osm │ ├── same-ids.osm │ ├── unsorted-ids-n.osm │ ├── unsorted-ids-w.osm │ ├── unsorted-types-nrw.osm │ ├── unsorted-types-wn.osm │ ├── unsorted-versions-132.osm │ ├── unsorted-versions-133.osm │ └── unsorted-versions-21.osm ├── misc │ └── CMakeLists.txt ├── order │ ├── fail-order-n.osm │ ├── fail-order-r.osm │ ├── fail-order-rw.osm │ ├── fail-order-w.osm │ └── fail-order-wn.osm ├── removeid │ ├── CMakeLists.txt │ ├── input.osm │ ├── n12w20.ids │ ├── output-n10w21.osm │ ├── output-n11n12.osm │ ├── output-n12w20.osm │ └── output-r30.osm ├── renumber │ ├── CMakeLists.txt │ ├── input-change.osc │ ├── input-norel.osm │ ├── input-sorted.osm │ ├── output-change.osc │ ├── output-norel-change.osc │ ├── output-sorted-n.osm │ ├── output-sorted-s.osm │ └── output-sorted.osm ├── show │ ├── CMakeLists.txt │ ├── input.osm │ ├── output-debug.txt │ ├── output-opl.opl │ └── output-xml.osm ├── sort │ ├── CMakeLists.txt │ ├── input-bounds1.osm │ ├── input-bounds2.osm │ ├── input-change.osc │ ├── input-history-only-version.osm │ ├── input-history-partially-only-version.osm │ ├── input-history1.osm │ ├── input-history2.osm │ ├── input-neg.osm │ ├── input-simple-onefile.osm │ ├── input-simple1-only-version.osm │ ├── input-simple1.osm │ ├── input-simple2.osm │ ├── output-bounds.osm │ ├── output-change.osc │ ├── output-history-only-version.osm │ ├── output-history-partially-only-version.osm │ ├── output-history.osm │ ├── output-neg.osm │ ├── output-simple-1-only-version.osm │ ├── output-simple-onefile.osm │ └── output-simple.osm ├── tags-filter │ ├── CMakeLists.txt │ ├── input-nodes.osm │ ├── input-site.osm │ ├── input.osm │ ├── output-amenity.osm │ ├── output-highway-R.osm │ ├── output-highway-i.osm │ ├── output-highway-it.osm │ ├── output-highway-t.osm │ ├── output-highway.osm │ ├── output-nodes-highway-i.osm │ ├── output-note-R.osm │ ├── output-note-iR.osm │ ├── output-note-rel-t.osm │ ├── output-note-rel.osm │ ├── output-site-1.osm │ ├── output-site-2.osm │ ├── output-site-R-all.osm │ ├── output-site-R.osm │ └── output-site-t.osm ├── time-filter │ ├── CMakeLists.txt │ ├── input.osh │ ├── output-last.osm │ ├── output-range-0-5.osh │ ├── output-range-1-2.osh │ ├── output-range-1a-2a.osh │ ├── output-range-2-3.osh │ ├── output-range-2-3a.osh │ ├── output-range-2-4.osh │ ├── output-ts1.osm │ ├── output-ts2.osm │ ├── output-ts3.osm │ └── test_setup.cpp ├── unit_tests.cpp └── util │ └── test_unit.cpp └── zsh_completion └── _osmium /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: "https://osmcode.org/sponsors.html" 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/actions/build/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/.github/actions/build/action.yml -------------------------------------------------------------------------------- /.github/actions/cmake-windows/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/.github/actions/cmake-windows/action.yml -------------------------------------------------------------------------------- /.github/actions/cmake/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/.github/actions/cmake/action.yml -------------------------------------------------------------------------------- /.github/actions/ctest/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/.github/actions/ctest/action.yml -------------------------------------------------------------------------------- /.github/actions/install-from-git/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/.github/actions/install-from-git/action.yml -------------------------------------------------------------------------------- /.github/actions/install-ubuntu/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/.github/actions/install-ubuntu/action.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/clang-tidy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/.github/workflows/clang-tidy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | .ycm_extra_conf.pyc 3 | /build 4 | /libosmium-deps 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/README.md -------------------------------------------------------------------------------- /cmake/FindLZ4.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/cmake/FindLZ4.cmake -------------------------------------------------------------------------------- /cmake/FindOsmium.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/cmake/FindOsmium.cmake -------------------------------------------------------------------------------- /cmake/FindProtozero.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/cmake/FindProtozero.cmake -------------------------------------------------------------------------------- /cmake/run_test_compare_output.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/cmake/run_test_compare_output.cmake -------------------------------------------------------------------------------- /cmake/run_test_compare_output_return.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/cmake/run_test_compare_output_return.cmake -------------------------------------------------------------------------------- /cmake/test_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/cmake/test_install.cmake -------------------------------------------------------------------------------- /export-example-config/default-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/export-example-config/default-config.json -------------------------------------------------------------------------------- /export-example-config/example-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/export-example-config/example-config.json -------------------------------------------------------------------------------- /extract-example-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/extract-example-config/README.md -------------------------------------------------------------------------------- /extract-example-config/berlin-feature-collection.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/extract-example-config/berlin-feature-collection.geojson -------------------------------------------------------------------------------- /extract-example-config/berlin.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/extract-example-config/berlin.geojson -------------------------------------------------------------------------------- /extract-example-config/berlin.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/extract-example-config/berlin.poly -------------------------------------------------------------------------------- /extract-example-config/brandenburg.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/extract-example-config/brandenburg.poly -------------------------------------------------------------------------------- /extract-example-config/extracts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/extract-example-config/extracts.json -------------------------------------------------------------------------------- /extract-example-config/hamburg.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/extract-example-config/hamburg.poly -------------------------------------------------------------------------------- /extract-example-config/karlsruhe.osm.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/extract-example-config/karlsruhe.osm.bz2 -------------------------------------------------------------------------------- /fix-formatting.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/fix-formatting.sh -------------------------------------------------------------------------------- /iwyu.imp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/iwyu.imp -------------------------------------------------------------------------------- /man/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/man/CMakeLists.txt -------------------------------------------------------------------------------- /man/common-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/man/common-options.md -------------------------------------------------------------------------------- /man/input-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/man/input-options.md -------------------------------------------------------------------------------- /man/manpage.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/man/manpage.template -------------------------------------------------------------------------------- /man/osmium-add-locations-to-ways.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/man/osmium-add-locations-to-ways.md -------------------------------------------------------------------------------- /man/osmium-apply-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/man/osmium-apply-changes.md -------------------------------------------------------------------------------- /man/osmium-cat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/man/osmium-cat.md -------------------------------------------------------------------------------- /man/osmium-changeset-filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/man/osmium-changeset-filter.md -------------------------------------------------------------------------------- /man/osmium-check-refs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/man/osmium-check-refs.md -------------------------------------------------------------------------------- /man/osmium-create-locations-index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/man/osmium-create-locations-index.md -------------------------------------------------------------------------------- /man/osmium-derive-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/man/osmium-derive-changes.md -------------------------------------------------------------------------------- /man/osmium-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/man/osmium-diff.md -------------------------------------------------------------------------------- /man/osmium-export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/man/osmium-export.md -------------------------------------------------------------------------------- /man/osmium-extract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/man/osmium-extract.md -------------------------------------------------------------------------------- /man/osmium-file-formats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/man/osmium-file-formats.md -------------------------------------------------------------------------------- /man/osmium-fileinfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/man/osmium-fileinfo.md -------------------------------------------------------------------------------- /man/osmium-getid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/man/osmium-getid.md -------------------------------------------------------------------------------- /man/osmium-getparents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/man/osmium-getparents.md -------------------------------------------------------------------------------- /man/osmium-index-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/man/osmium-index-types.md -------------------------------------------------------------------------------- /man/osmium-merge-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/man/osmium-merge-changes.md -------------------------------------------------------------------------------- /man/osmium-merge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/man/osmium-merge.md -------------------------------------------------------------------------------- /man/osmium-output-headers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/man/osmium-output-headers.md -------------------------------------------------------------------------------- /man/osmium-query-locations-index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/man/osmium-query-locations-index.md -------------------------------------------------------------------------------- /man/osmium-removeid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/man/osmium-removeid.md -------------------------------------------------------------------------------- /man/osmium-renumber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/man/osmium-renumber.md -------------------------------------------------------------------------------- /man/osmium-show.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/man/osmium-show.md -------------------------------------------------------------------------------- /man/osmium-sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/man/osmium-sort.md -------------------------------------------------------------------------------- /man/osmium-tags-count.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/man/osmium-tags-count.md -------------------------------------------------------------------------------- /man/osmium-tags-filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/man/osmium-tags-filter.md -------------------------------------------------------------------------------- /man/osmium-time-filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/man/osmium-time-filter.md -------------------------------------------------------------------------------- /man/osmium.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/man/osmium.md -------------------------------------------------------------------------------- /man/output-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/man/output-options.md -------------------------------------------------------------------------------- /man/progress-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/man/progress-options.md -------------------------------------------------------------------------------- /osmium-wrapper.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/osmium-wrapper.in -------------------------------------------------------------------------------- /scripts/osm-history-splitter2osmium-extract-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/scripts/osm-history-splitter2osmium-extract-config.sh -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/cmd.cpp -------------------------------------------------------------------------------- /src/cmd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/cmd.hpp -------------------------------------------------------------------------------- /src/cmd_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/cmd_factory.cpp -------------------------------------------------------------------------------- /src/command_add_locations_to_ways.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_add_locations_to_ways.cpp -------------------------------------------------------------------------------- /src/command_add_locations_to_ways.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_add_locations_to_ways.hpp -------------------------------------------------------------------------------- /src/command_apply_changes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_apply_changes.cpp -------------------------------------------------------------------------------- /src/command_apply_changes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_apply_changes.hpp -------------------------------------------------------------------------------- /src/command_cat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_cat.cpp -------------------------------------------------------------------------------- /src/command_cat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_cat.hpp -------------------------------------------------------------------------------- /src/command_changeset_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_changeset_filter.cpp -------------------------------------------------------------------------------- /src/command_changeset_filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_changeset_filter.hpp -------------------------------------------------------------------------------- /src/command_check_refs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_check_refs.cpp -------------------------------------------------------------------------------- /src/command_check_refs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_check_refs.hpp -------------------------------------------------------------------------------- /src/command_create_locations_index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_create_locations_index.cpp -------------------------------------------------------------------------------- /src/command_create_locations_index.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_create_locations_index.hpp -------------------------------------------------------------------------------- /src/command_derive_changes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_derive_changes.cpp -------------------------------------------------------------------------------- /src/command_derive_changes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_derive_changes.hpp -------------------------------------------------------------------------------- /src/command_diff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_diff.cpp -------------------------------------------------------------------------------- /src/command_diff.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_diff.hpp -------------------------------------------------------------------------------- /src/command_export.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_export.cpp -------------------------------------------------------------------------------- /src/command_export.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_export.hpp -------------------------------------------------------------------------------- /src/command_extract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_extract.cpp -------------------------------------------------------------------------------- /src/command_extract.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_extract.hpp -------------------------------------------------------------------------------- /src/command_fileinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_fileinfo.cpp -------------------------------------------------------------------------------- /src/command_fileinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_fileinfo.hpp -------------------------------------------------------------------------------- /src/command_getid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_getid.cpp -------------------------------------------------------------------------------- /src/command_getid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_getid.hpp -------------------------------------------------------------------------------- /src/command_getparents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_getparents.cpp -------------------------------------------------------------------------------- /src/command_getparents.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_getparents.hpp -------------------------------------------------------------------------------- /src/command_help.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_help.cpp -------------------------------------------------------------------------------- /src/command_help.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_help.hpp -------------------------------------------------------------------------------- /src/command_merge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_merge.cpp -------------------------------------------------------------------------------- /src/command_merge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_merge.hpp -------------------------------------------------------------------------------- /src/command_merge_changes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_merge_changes.cpp -------------------------------------------------------------------------------- /src/command_merge_changes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_merge_changes.hpp -------------------------------------------------------------------------------- /src/command_query_locations_index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_query_locations_index.cpp -------------------------------------------------------------------------------- /src/command_query_locations_index.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_query_locations_index.hpp -------------------------------------------------------------------------------- /src/command_removeid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_removeid.cpp -------------------------------------------------------------------------------- /src/command_removeid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_removeid.hpp -------------------------------------------------------------------------------- /src/command_renumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_renumber.cpp -------------------------------------------------------------------------------- /src/command_renumber.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_renumber.hpp -------------------------------------------------------------------------------- /src/command_show.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_show.cpp -------------------------------------------------------------------------------- /src/command_show.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_show.hpp -------------------------------------------------------------------------------- /src/command_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_sort.cpp -------------------------------------------------------------------------------- /src/command_sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_sort.hpp -------------------------------------------------------------------------------- /src/command_tags_count.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_tags_count.cpp -------------------------------------------------------------------------------- /src/command_tags_count.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_tags_count.hpp -------------------------------------------------------------------------------- /src/command_tags_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_tags_filter.cpp -------------------------------------------------------------------------------- /src/command_tags_filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_tags_filter.hpp -------------------------------------------------------------------------------- /src/command_time_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_time_filter.cpp -------------------------------------------------------------------------------- /src/command_time_filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/command_time_filter.hpp -------------------------------------------------------------------------------- /src/commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/commands.cpp -------------------------------------------------------------------------------- /src/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/exception.hpp -------------------------------------------------------------------------------- /src/export/export_format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/export/export_format.hpp -------------------------------------------------------------------------------- /src/export/export_format_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/export/export_format_json.cpp -------------------------------------------------------------------------------- /src/export/export_format_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/export/export_format_json.hpp -------------------------------------------------------------------------------- /src/export/export_format_pg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/export/export_format_pg.cpp -------------------------------------------------------------------------------- /src/export/export_format_pg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/export/export_format_pg.hpp -------------------------------------------------------------------------------- /src/export/export_format_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/export/export_format_text.cpp -------------------------------------------------------------------------------- /src/export/export_format_text.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/export/export_format_text.hpp -------------------------------------------------------------------------------- /src/export/export_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/export/export_handler.cpp -------------------------------------------------------------------------------- /src/export/export_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/export/export_handler.hpp -------------------------------------------------------------------------------- /src/export/options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/export/options.hpp -------------------------------------------------------------------------------- /src/export/ruleset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/export/ruleset.hpp -------------------------------------------------------------------------------- /src/extract/extract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/extract/extract.cpp -------------------------------------------------------------------------------- /src/extract/extract.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/extract/extract.hpp -------------------------------------------------------------------------------- /src/extract/extract_bbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/extract/extract_bbox.cpp -------------------------------------------------------------------------------- /src/extract/extract_bbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/extract/extract_bbox.hpp -------------------------------------------------------------------------------- /src/extract/extract_polygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/extract/extract_polygon.cpp -------------------------------------------------------------------------------- /src/extract/extract_polygon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/extract/extract_polygon.hpp -------------------------------------------------------------------------------- /src/extract/geojson_file_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/extract/geojson_file_parser.cpp -------------------------------------------------------------------------------- /src/extract/geojson_file_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/extract/geojson_file_parser.hpp -------------------------------------------------------------------------------- /src/extract/geometry_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/extract/geometry_util.cpp -------------------------------------------------------------------------------- /src/extract/geometry_util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/extract/geometry_util.hpp -------------------------------------------------------------------------------- /src/extract/osm_file_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/extract/osm_file_parser.cpp -------------------------------------------------------------------------------- /src/extract/osm_file_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/extract/osm_file_parser.hpp -------------------------------------------------------------------------------- /src/extract/poly_file_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/extract/poly_file_parser.cpp -------------------------------------------------------------------------------- /src/extract/poly_file_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/extract/poly_file_parser.hpp -------------------------------------------------------------------------------- /src/extract/strategy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/extract/strategy.hpp -------------------------------------------------------------------------------- /src/extract/strategy_complete_ways.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/extract/strategy_complete_ways.cpp -------------------------------------------------------------------------------- /src/extract/strategy_complete_ways.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/extract/strategy_complete_ways.hpp -------------------------------------------------------------------------------- /src/extract/strategy_complete_ways_with_history.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/extract/strategy_complete_ways_with_history.cpp -------------------------------------------------------------------------------- /src/extract/strategy_complete_ways_with_history.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/extract/strategy_complete_ways_with_history.hpp -------------------------------------------------------------------------------- /src/extract/strategy_simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/extract/strategy_simple.cpp -------------------------------------------------------------------------------- /src/extract/strategy_simple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/extract/strategy_simple.hpp -------------------------------------------------------------------------------- /src/extract/strategy_smart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/extract/strategy_smart.cpp -------------------------------------------------------------------------------- /src/extract/strategy_smart.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/extract/strategy_smart.hpp -------------------------------------------------------------------------------- /src/id_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/id_file.cpp -------------------------------------------------------------------------------- /src/id_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/id_file.hpp -------------------------------------------------------------------------------- /src/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/io.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/option_clean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/option_clean.cpp -------------------------------------------------------------------------------- /src/option_clean.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/option_clean.hpp -------------------------------------------------------------------------------- /src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/util.cpp -------------------------------------------------------------------------------- /src/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/util.hpp -------------------------------------------------------------------------------- /src/version.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/src/version.cpp.in -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/add-locations-to-ways/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/add-locations-to-ways/CMakeLists.txt -------------------------------------------------------------------------------- /test/add-locations-to-ways/input-rel.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/add-locations-to-ways/input-rel.osm -------------------------------------------------------------------------------- /test/add-locations-to-ways/input.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/add-locations-to-ways/input.osm -------------------------------------------------------------------------------- /test/add-locations-to-ways/output-n.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/add-locations-to-ways/output-n.osm -------------------------------------------------------------------------------- /test/add-locations-to-ways/output-rel.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/add-locations-to-ways/output-rel.osm -------------------------------------------------------------------------------- /test/add-locations-to-ways/output.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/add-locations-to-ways/output.osm -------------------------------------------------------------------------------- /test/apply-changes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/apply-changes/CMakeLists.txt -------------------------------------------------------------------------------- /test/apply-changes/input-change-only-version.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/apply-changes/input-change-only-version.osc -------------------------------------------------------------------------------- /test/apply-changes/input-change.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/apply-changes/input-change.osc -------------------------------------------------------------------------------- /test/apply-changes/input-data-low.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/apply-changes/input-data-low.osm -------------------------------------------------------------------------------- /test/apply-changes/input-data.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/apply-changes/input-data.osm -------------------------------------------------------------------------------- /test/apply-changes/input-history.osh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/apply-changes/input-history.osh -------------------------------------------------------------------------------- /test/apply-changes/input-history.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/apply-changes/input-history.osm -------------------------------------------------------------------------------- /test/apply-changes/input-patch-old-version.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/apply-changes/input-patch-old-version.osc -------------------------------------------------------------------------------- /test/apply-changes/input-patch-old-version.osh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/apply-changes/input-patch-old-version.osh -------------------------------------------------------------------------------- /test/apply-changes/input-redact-and-update.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/apply-changes/input-redact-and-update.osc -------------------------------------------------------------------------------- /test/apply-changes/input-redact-and-update.osh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/apply-changes/input-redact-and-update.osh -------------------------------------------------------------------------------- /test/apply-changes/input-redact-metadata.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/apply-changes/input-redact-metadata.osc -------------------------------------------------------------------------------- /test/apply-changes/input-redact-metadata.osh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/apply-changes/input-redact-metadata.osh -------------------------------------------------------------------------------- /test/apply-changes/input-version+timestamp.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/apply-changes/input-version+timestamp.osm -------------------------------------------------------------------------------- /test/apply-changes/input-version.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/apply-changes/input-version.osc -------------------------------------------------------------------------------- /test/apply-changes/output-data-low.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/apply-changes/output-data-low.osm -------------------------------------------------------------------------------- /test/apply-changes/output-data.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/apply-changes/output-data.osm -------------------------------------------------------------------------------- /test/apply-changes/output-history.osh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/apply-changes/output-history.osh -------------------------------------------------------------------------------- /test/apply-changes/output-patch-old-version.osh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/apply-changes/output-patch-old-version.osh -------------------------------------------------------------------------------- /test/apply-changes/output-redact-and-update.osh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/apply-changes/output-redact-and-update.osh -------------------------------------------------------------------------------- /test/apply-changes/output-redact-metadata.osh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/apply-changes/output-redact-metadata.osh -------------------------------------------------------------------------------- /test/apply-changes/output-version-applied-on-all.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/apply-changes/output-version-applied-on-all.osm -------------------------------------------------------------------------------- /test/apply-changes/output-version-applied-on-version+timestamp-low.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/apply-changes/output-version-applied-on-version+timestamp-low.osm -------------------------------------------------------------------------------- /test/apply-changes/output-version-applied-on-version+timestamp.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/apply-changes/output-version-applied-on-version+timestamp.osm -------------------------------------------------------------------------------- /test/cat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/cat/CMakeLists.txt -------------------------------------------------------------------------------- /test/cat/input1.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/cat/input1.osm -------------------------------------------------------------------------------- /test/cat/input1.osm.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/cat/input1.osm.bz2 -------------------------------------------------------------------------------- /test/cat/input1.osm.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/cat/input1.osm.gz -------------------------------------------------------------------------------- /test/cat/input1.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/cat/input1.osm.pbf -------------------------------------------------------------------------------- /test/cat/input2.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/cat/input2.osm -------------------------------------------------------------------------------- /test/cat/output-cat12.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/cat/output-cat12.osm -------------------------------------------------------------------------------- /test/cat/output-cat21.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/cat/output-cat21.osm -------------------------------------------------------------------------------- /test/cat/output1.osm.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/cat/output1.osm.opl -------------------------------------------------------------------------------- /test/cat/test_setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/cat/test_setup.cpp -------------------------------------------------------------------------------- /test/changeset-filter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/changeset-filter/CMakeLists.txt -------------------------------------------------------------------------------- /test/changeset-filter/input-open.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/changeset-filter/input-open.osm -------------------------------------------------------------------------------- /test/changeset-filter/input1.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/changeset-filter/input1.osm -------------------------------------------------------------------------------- /test/changeset-filter/output-empty.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/changeset-filter/output-empty.osm -------------------------------------------------------------------------------- /test/changeset-filter/output-open.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/changeset-filter/output-open.osm -------------------------------------------------------------------------------- /test/changeset-filter/output1-all.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/changeset-filter/output1-all.osm -------------------------------------------------------------------------------- /test/changeset-filter/output1-first.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/changeset-filter/output1-first.osm -------------------------------------------------------------------------------- /test/changeset-filter/output1-second.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/changeset-filter/output1-second.osm -------------------------------------------------------------------------------- /test/check-refs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/check-refs/CMakeLists.txt -------------------------------------------------------------------------------- /test/check-refs/fail-n-in-r.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/check-refs/fail-n-in-r.osm -------------------------------------------------------------------------------- /test/check-refs/fail-n-in-w.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/check-refs/fail-n-in-w.osm -------------------------------------------------------------------------------- /test/check-refs/fail-r-in-r-1.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/check-refs/fail-r-in-r-1.osm -------------------------------------------------------------------------------- /test/check-refs/fail-r-in-r-2.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/check-refs/fail-r-in-r-2.osm -------------------------------------------------------------------------------- /test/check-refs/fail-w-in-r.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/check-refs/fail-w-in-r.osm -------------------------------------------------------------------------------- /test/check-refs/okay-r-in-r.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/check-refs/okay-r-in-r.osm -------------------------------------------------------------------------------- /test/check-refs/okay.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/check-refs/okay.osm -------------------------------------------------------------------------------- /test/check-refs/way-okay.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/check-refs/way-okay.osm -------------------------------------------------------------------------------- /test/derive-changes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/derive-changes/CMakeLists.txt -------------------------------------------------------------------------------- /test/derive-changes/input1-only-version-timestamp.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/derive-changes/input1-only-version-timestamp.osm -------------------------------------------------------------------------------- /test/derive-changes/input1-only-version.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/derive-changes/input1-only-version.osm -------------------------------------------------------------------------------- /test/derive-changes/input1.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/derive-changes/input1.osm -------------------------------------------------------------------------------- /test/derive-changes/input2-all-with-relation.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/derive-changes/input2-all-with-relation.osm -------------------------------------------------------------------------------- /test/derive-changes/input2-only-version-timestamp.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/derive-changes/input2-only-version-timestamp.osm -------------------------------------------------------------------------------- /test/derive-changes/input2-only-versions.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/derive-changes/input2-only-versions.osm -------------------------------------------------------------------------------- /test/derive-changes/input2.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/derive-changes/input2.osm -------------------------------------------------------------------------------- /test/derive-changes/output-2-only-version-timestamp.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/derive-changes/output-2-only-version-timestamp.osc -------------------------------------------------------------------------------- /test/derive-changes/output-2-only-version.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/derive-changes/output-2-only-version.osc -------------------------------------------------------------------------------- /test/derive-changes/output-2-version-with-all.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/derive-changes/output-2-version-with-all.osc -------------------------------------------------------------------------------- /test/derive-changes/output-2-version-with-version-timestamp.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/derive-changes/output-2-version-with-version-timestamp.osc -------------------------------------------------------------------------------- /test/derive-changes/output-incr-version.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/derive-changes/output-incr-version.osc -------------------------------------------------------------------------------- /test/derive-changes/output-keep-details.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/derive-changes/output-keep-details.osc -------------------------------------------------------------------------------- /test/derive-changes/output.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/derive-changes/output.osc -------------------------------------------------------------------------------- /test/diff/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/diff/CMakeLists.txt -------------------------------------------------------------------------------- /test/diff/input1.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/diff/input1.osm -------------------------------------------------------------------------------- /test/diff/input1uid.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/diff/input1uid.osm -------------------------------------------------------------------------------- /test/diff/input2.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/diff/input2.osm -------------------------------------------------------------------------------- /test/diff/input2uid.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/diff/input2uid.osm -------------------------------------------------------------------------------- /test/diff/output-c.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/diff/output-c.opl -------------------------------------------------------------------------------- /test/diff/output-compact: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/diff/output-compact -------------------------------------------------------------------------------- /test/diff/output-compact-c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/diff/output-compact-c -------------------------------------------------------------------------------- /test/diff/output-compact-c-nouid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/diff/output-compact-c-nouid -------------------------------------------------------------------------------- /test/diff/output-compact-c-nouid-opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/diff/output-compact-c-nouid-opl -------------------------------------------------------------------------------- /test/diff/output-empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/diff/output-same: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/diff/output-same -------------------------------------------------------------------------------- /test/diff/output.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/diff/output.opl -------------------------------------------------------------------------------- /test/diff/test_setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/diff/test_setup.cpp -------------------------------------------------------------------------------- /test/export/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/CMakeLists.txt -------------------------------------------------------------------------------- /test/export/config-empty-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/config-empty-empty.json -------------------------------------------------------------------------------- /test/export/config-empty-tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/config-empty-tag.json -------------------------------------------------------------------------------- /test/export/config-empty-tagx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/config-empty-tagx.json -------------------------------------------------------------------------------- /test/export/config-false-false.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/config-false-false.json -------------------------------------------------------------------------------- /test/export/config-null-null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/config-null-null.json -------------------------------------------------------------------------------- /test/export/config-null-tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/config-null-tag.json -------------------------------------------------------------------------------- /test/export/config-tag-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/config-tag-empty.json -------------------------------------------------------------------------------- /test/export/config-tag-null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/config-tag-null.json -------------------------------------------------------------------------------- /test/export/config-tag-tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/config-tag-tag.json -------------------------------------------------------------------------------- /test/export/config-tagx-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/config-tagx-empty.json -------------------------------------------------------------------------------- /test/export/config-tagx-tagx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/config-tagx-tagx.json -------------------------------------------------------------------------------- /test/export/config-true-true.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/config-true-true.json -------------------------------------------------------------------------------- /test/export/config-undefined.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/config-undefined.json -------------------------------------------------------------------------------- /test/export/empty-tag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/empty-tag.txt -------------------------------------------------------------------------------- /test/export/input-chars.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/input-chars.osm -------------------------------------------------------------------------------- /test/export/input-incomplete-rel-missing-way.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/input-incomplete-rel-missing-way.osm -------------------------------------------------------------------------------- /test/export/input-incomplete-relation.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/input-incomplete-relation.osm -------------------------------------------------------------------------------- /test/export/input-missing-node.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/input-missing-node.osm -------------------------------------------------------------------------------- /test/export/input-mp.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/input-mp.osm -------------------------------------------------------------------------------- /test/export/input-single-node-way.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/input-single-node-way.osm -------------------------------------------------------------------------------- /test/export/input.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/input.osm -------------------------------------------------------------------------------- /test/export/output-attr.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/output-attr.geojson -------------------------------------------------------------------------------- /test/export/output-chars.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/output-chars.geojson -------------------------------------------------------------------------------- /test/export/output-cnt.geojsonseq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/output-cnt.geojsonseq -------------------------------------------------------------------------------- /test/export/output-empty.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/output-empty.geojson -------------------------------------------------------------------------------- /test/export/output-incomplete-relation.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/output-incomplete-relation.geojson -------------------------------------------------------------------------------- /test/export/output-missing-node.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/output-missing-node.geojson -------------------------------------------------------------------------------- /test/export/output-mp.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/output-mp.geojson -------------------------------------------------------------------------------- /test/export/output-uid.geojsonseq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/output-uid.geojsonseq -------------------------------------------------------------------------------- /test/export/output-untagged.pg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/output-untagged.pg -------------------------------------------------------------------------------- /test/export/output.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/output.geojson -------------------------------------------------------------------------------- /test/export/output.geojsonseq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/output.geojsonseq -------------------------------------------------------------------------------- /test/export/output.pg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/output.pg -------------------------------------------------------------------------------- /test/export/tag-empty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/tag-empty.txt -------------------------------------------------------------------------------- /test/export/tag-tag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/tag-tag.txt -------------------------------------------------------------------------------- /test/export/way-all-n.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/way-all-n.txt -------------------------------------------------------------------------------- /test/export/way-all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/way-all.txt -------------------------------------------------------------------------------- /test/export/way-empty-tag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/way-empty-tag.txt -------------------------------------------------------------------------------- /test/export/way-empty-tagx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/way-empty-tagx.txt -------------------------------------------------------------------------------- /test/export/way-none.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/way-none.txt -------------------------------------------------------------------------------- /test/export/way-null-tag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/way-null-tag.txt -------------------------------------------------------------------------------- /test/export/way-tag-empty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/way-tag-empty.txt -------------------------------------------------------------------------------- /test/export/way-tag-null.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/way-tag-null.txt -------------------------------------------------------------------------------- /test/export/way-tag-tag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/way-tag-tag.txt -------------------------------------------------------------------------------- /test/export/way-tagx-empty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/way-tagx-empty.txt -------------------------------------------------------------------------------- /test/export/way-tagx-tagx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/way-tagx-tagx.txt -------------------------------------------------------------------------------- /test/export/way.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/export/way.osm -------------------------------------------------------------------------------- /test/extract/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/CMakeLists.txt -------------------------------------------------------------------------------- /test/extract/antimeridian.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/antimeridian.opl -------------------------------------------------------------------------------- /test/extract/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/config.json -------------------------------------------------------------------------------- /test/extract/empty-root.geojson: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/extract/empty.geojson: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/extract/empty.osm.opl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/extract/empty.poly: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/extract/input1.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/input1.osm -------------------------------------------------------------------------------- /test/extract/input64.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/input64.osm -------------------------------------------------------------------------------- /test/extract/invalid-root.geojson: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /test/extract/invalid.geojson: -------------------------------------------------------------------------------- 1 | FOOBAR 2 | -------------------------------------------------------------------------------- /test/extract/missing-end-polygon.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/missing-end-polygon.poly -------------------------------------------------------------------------------- /test/extract/missing-end-ring.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/missing-end-ring.poly -------------------------------------------------------------------------------- /test/extract/multipolygon.osm.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/multipolygon.osm.opl -------------------------------------------------------------------------------- /test/extract/no-polygon.osm.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/no-polygon.osm.opl -------------------------------------------------------------------------------- /test/extract/one-line.poly: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /test/extract/output-antimeridian-both.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/output-antimeridian-both.opl -------------------------------------------------------------------------------- /test/extract/output-antimeridian-east.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/output-antimeridian-east.opl -------------------------------------------------------------------------------- /test/extract/output-antimeridian-west.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/output-antimeridian-west.opl -------------------------------------------------------------------------------- /test/extract/output-clean.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/output-clean.osm -------------------------------------------------------------------------------- /test/extract/output-clean64.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/output-clean64.osm -------------------------------------------------------------------------------- /test/extract/output-complete-ways-norels.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/output-complete-ways-norels.osm -------------------------------------------------------------------------------- /test/extract/output-complete-ways-norels64.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/output-complete-ways-norels64.osm -------------------------------------------------------------------------------- /test/extract/output-complete-ways.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/output-complete-ways.osm -------------------------------------------------------------------------------- /test/extract/output-complete-ways64.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/output-complete-ways64.osm -------------------------------------------------------------------------------- /test/extract/output-simple.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/output-simple.osm -------------------------------------------------------------------------------- /test/extract/output-simple64.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/output-simple64.osm -------------------------------------------------------------------------------- /test/extract/output-smart-nonmp.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/output-smart-nonmp.osm -------------------------------------------------------------------------------- /test/extract/output-smart-nonmp64.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/output-smart-nonmp64.osm -------------------------------------------------------------------------------- /test/extract/output-smart.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/output-smart.osm -------------------------------------------------------------------------------- /test/extract/output-smart64.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/output-smart64.osm -------------------------------------------------------------------------------- /test/extract/polygon-crlf.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/polygon-crlf.poly -------------------------------------------------------------------------------- /test/extract/polygon-one-outer.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/polygon-one-outer.poly -------------------------------------------------------------------------------- /test/extract/polygon-outer-inner.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/polygon-outer-inner.poly -------------------------------------------------------------------------------- /test/extract/polygon-russia-all.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/polygon-russia-all.geojson -------------------------------------------------------------------------------- /test/extract/polygon-russia-east.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/polygon-russia-east.geojson -------------------------------------------------------------------------------- /test/extract/polygon-russia-reverse.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/polygon-russia-reverse.geojson -------------------------------------------------------------------------------- /test/extract/polygon-russia-west.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/polygon-russia-west.geojson -------------------------------------------------------------------------------- /test/extract/polygon-two-outer.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/polygon-two-outer.poly -------------------------------------------------------------------------------- /test/extract/polygon-two-ways.osm.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/polygon-two-ways.osm.opl -------------------------------------------------------------------------------- /test/extract/polygon-us-alaska-no-feature.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/polygon-us-alaska-no-feature.geojson -------------------------------------------------------------------------------- /test/extract/polygon-us-alaska.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/polygon-us-alaska.geojson -------------------------------------------------------------------------------- /test/extract/polygon-us-alaska.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/polygon-us-alaska.poly -------------------------------------------------------------------------------- /test/extract/polygon-way.osm.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/polygon-way.osm.opl -------------------------------------------------------------------------------- /test/extract/test_unit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/test_unit.cpp -------------------------------------------------------------------------------- /test/extract/two-line.poly: -------------------------------------------------------------------------------- 1 | foo 2 | bar 3 | -------------------------------------------------------------------------------- /test/extract/two-polygons-empty-line.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/two-polygons-empty-line.poly -------------------------------------------------------------------------------- /test/extract/two-polygons.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/two-polygons.poly -------------------------------------------------------------------------------- /test/extract/w42394837.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/w42394837.opl -------------------------------------------------------------------------------- /test/extract/w42394837.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/w42394837.osm -------------------------------------------------------------------------------- /test/extract/w46113981.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/w46113981.opl -------------------------------------------------------------------------------- /test/extract/w46113981.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/w46113981.osm -------------------------------------------------------------------------------- /test/extract/wrong-geometry-type.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/extract/wrong-geometry-type.geojson -------------------------------------------------------------------------------- /test/fileinfo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/fileinfo/CMakeLists.txt -------------------------------------------------------------------------------- /test/fileinfo/fi1-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/fileinfo/fi1-result.json -------------------------------------------------------------------------------- /test/fileinfo/fi1-result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/fileinfo/fi1-result.txt -------------------------------------------------------------------------------- /test/fileinfo/fi1.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/fileinfo/fi1.osm -------------------------------------------------------------------------------- /test/fileinfo/fi2.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/fileinfo/fi2.osm -------------------------------------------------------------------------------- /test/fileinfo/fi3.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/fileinfo/fi3.osm -------------------------------------------------------------------------------- /test/formats/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/formats/CMakeLists.txt -------------------------------------------------------------------------------- /test/formats/empty-nocompression.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/formats/empty-nocompression.osm.pbf -------------------------------------------------------------------------------- /test/formats/empty-nodensenodes-nometadata.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/formats/empty-nodensenodes-nometadata.osm.pbf -------------------------------------------------------------------------------- /test/formats/empty-nodensenodes.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/formats/empty-nodensenodes.osm.pbf -------------------------------------------------------------------------------- /test/formats/empty-nometadata.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/formats/empty-nometadata.osm.pbf -------------------------------------------------------------------------------- /test/formats/empty.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/formats/empty.osm -------------------------------------------------------------------------------- /test/formats/empty.osm.opl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/formats/empty.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/formats/empty.osm.pbf -------------------------------------------------------------------------------- /test/formats/f1-nocompression.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/formats/f1-nocompression.osm.pbf -------------------------------------------------------------------------------- /test/formats/f1-nodensenodes-nometadata.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/formats/f1-nodensenodes-nometadata.osm.pbf -------------------------------------------------------------------------------- /test/formats/f1-nodensenodes.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/formats/f1-nodensenodes.osm.pbf -------------------------------------------------------------------------------- /test/formats/f1-nometadata.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/formats/f1-nometadata.osm.pbf -------------------------------------------------------------------------------- /test/formats/f1.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/formats/f1.osm -------------------------------------------------------------------------------- /test/formats/f1.osm.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/formats/f1.osm.opl -------------------------------------------------------------------------------- /test/formats/f1.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/formats/f1.osm.pbf -------------------------------------------------------------------------------- /test/getid/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/getid/CMakeLists.txt -------------------------------------------------------------------------------- /test/getid/idfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/getid/idfile -------------------------------------------------------------------------------- /test/getid/in10.id: -------------------------------------------------------------------------------- 1 | n10 2 | -------------------------------------------------------------------------------- /test/getid/in10.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/getid/in10.osm -------------------------------------------------------------------------------- /test/getid/in19.id: -------------------------------------------------------------------------------- 1 | n19 2 | -------------------------------------------------------------------------------- /test/getid/in19.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/getid/in19.osm -------------------------------------------------------------------------------- /test/getid/in21.id: -------------------------------------------------------------------------------- 1 | w21 2 | -------------------------------------------------------------------------------- /test/getid/in21.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/getid/in21.osm -------------------------------------------------------------------------------- /test/getid/in29.id: -------------------------------------------------------------------------------- 1 | w29 2 | -------------------------------------------------------------------------------- /test/getid/in29.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/getid/in29.osm -------------------------------------------------------------------------------- /test/getid/in30.id: -------------------------------------------------------------------------------- 1 | r30 2 | -------------------------------------------------------------------------------- /test/getid/in30.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/getid/in30.osm -------------------------------------------------------------------------------- /test/getid/in31.id: -------------------------------------------------------------------------------- 1 | r31 2 | -------------------------------------------------------------------------------- /test/getid/in31.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/getid/in31.osm -------------------------------------------------------------------------------- /test/getid/in32.id: -------------------------------------------------------------------------------- 1 | r32 2 | -------------------------------------------------------------------------------- /test/getid/in32.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/getid/in32.osm -------------------------------------------------------------------------------- /test/getid/in39.id: -------------------------------------------------------------------------------- 1 | r39 2 | -------------------------------------------------------------------------------- /test/getid/in39.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/getid/in39.osm -------------------------------------------------------------------------------- /test/getid/input.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/getid/input.osm -------------------------------------------------------------------------------- /test/getid/out-empty.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/getid/out-empty.osm -------------------------------------------------------------------------------- /test/getid/out10.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/getid/out10.osm -------------------------------------------------------------------------------- /test/getid/out21.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/getid/out21.osm -------------------------------------------------------------------------------- /test/getid/out30.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/getid/out30.osm -------------------------------------------------------------------------------- /test/getid/out31.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/getid/out31.osm -------------------------------------------------------------------------------- /test/getid/out32.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/getid/out32.osm -------------------------------------------------------------------------------- /test/getid/output-file.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/getid/output-file.osm -------------------------------------------------------------------------------- /test/getid/output.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/getid/output.osm -------------------------------------------------------------------------------- /test/getid/relloop-out.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/getid/relloop-out.osm -------------------------------------------------------------------------------- /test/getid/relloop.id: -------------------------------------------------------------------------------- 1 | r30 2 | r31 3 | -------------------------------------------------------------------------------- /test/getid/relloop.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/getid/relloop.osm -------------------------------------------------------------------------------- /test/getid/source-no-rr.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/getid/source-no-rr.osm -------------------------------------------------------------------------------- /test/getid/source.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/getid/source.osm -------------------------------------------------------------------------------- /test/getparents/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/getparents/CMakeLists.txt -------------------------------------------------------------------------------- /test/getparents/input.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/getparents/input.osm -------------------------------------------------------------------------------- /test/getparents/out-n10-s.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/getparents/out-n10-s.osm -------------------------------------------------------------------------------- /test/getparents/out-n10.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/getparents/out-n10.osm -------------------------------------------------------------------------------- /test/getparents/out-n12-s.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/getparents/out-n12-s.osm -------------------------------------------------------------------------------- /test/getparents/out-n12.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/getparents/out-n12.osm -------------------------------------------------------------------------------- /test/getparents/out-w20-s.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/getparents/out-w20-s.osm -------------------------------------------------------------------------------- /test/getparents/out-w20.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/getparents/out-w20.osm -------------------------------------------------------------------------------- /test/help/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/help/CMakeLists.txt -------------------------------------------------------------------------------- /test/include/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/include/catch.hpp -------------------------------------------------------------------------------- /test/include/test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/include/test.hpp -------------------------------------------------------------------------------- /test/io/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/io/Makefile.in -------------------------------------------------------------------------------- /test/io/input.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/io/input.osm -------------------------------------------------------------------------------- /test/merge-changes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/merge-changes/CMakeLists.txt -------------------------------------------------------------------------------- /test/merge-changes/change1-only-version.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/merge-changes/change1-only-version.osc -------------------------------------------------------------------------------- /test/merge-changes/change1.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/merge-changes/change1.osc -------------------------------------------------------------------------------- /test/merge-changes/change2-only-version.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/merge-changes/change2-only-version.osc -------------------------------------------------------------------------------- /test/merge-changes/change2.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/merge-changes/change2.osc -------------------------------------------------------------------------------- /test/merge-changes/merged-both-only-version.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/merge-changes/merged-both-only-version.osc -------------------------------------------------------------------------------- /test/merge-changes/merged-first-only-version.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/merge-changes/merged-first-only-version.osc -------------------------------------------------------------------------------- /test/merge-changes/merged-second-only-version.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/merge-changes/merged-second-only-version.osc -------------------------------------------------------------------------------- /test/merge-changes/merged.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/merge-changes/merged.osc -------------------------------------------------------------------------------- /test/merge-changes/simplified-both-only-version.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/merge-changes/simplified-both-only-version.osc -------------------------------------------------------------------------------- /test/merge-changes/simplified-first-only-version.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/merge-changes/simplified-first-only-version.osc -------------------------------------------------------------------------------- /test/merge-changes/simplified-second-only-version.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/merge-changes/simplified-second-only-version.osc -------------------------------------------------------------------------------- /test/merge-changes/simplified.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/merge-changes/simplified.osc -------------------------------------------------------------------------------- /test/merge/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/merge/CMakeLists.txt -------------------------------------------------------------------------------- /test/merge/empty.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/merge/empty.osm -------------------------------------------------------------------------------- /test/merge/input1-only-version.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/merge/input1-only-version.osm -------------------------------------------------------------------------------- /test/merge/input1.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/merge/input1.osm -------------------------------------------------------------------------------- /test/merge/input2-only-version.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/merge/input2-only-version.osm -------------------------------------------------------------------------------- /test/merge/input2.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/merge/input2.osm -------------------------------------------------------------------------------- /test/merge/input3.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/merge/input3.osm -------------------------------------------------------------------------------- /test/merge/output-same-ids.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/merge/output-same-ids.osm -------------------------------------------------------------------------------- /test/merge/output1.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/merge/output1.osm -------------------------------------------------------------------------------- /test/merge/output2-12-only-version.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/merge/output2-12-only-version.osm -------------------------------------------------------------------------------- /test/merge/output2.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/merge/output2.osm -------------------------------------------------------------------------------- /test/merge/output3.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/merge/output3.osm -------------------------------------------------------------------------------- /test/merge/same-ids.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/merge/same-ids.osm -------------------------------------------------------------------------------- /test/merge/unsorted-ids-n.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/merge/unsorted-ids-n.osm -------------------------------------------------------------------------------- /test/merge/unsorted-ids-w.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/merge/unsorted-ids-w.osm -------------------------------------------------------------------------------- /test/merge/unsorted-types-nrw.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/merge/unsorted-types-nrw.osm -------------------------------------------------------------------------------- /test/merge/unsorted-types-wn.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/merge/unsorted-types-wn.osm -------------------------------------------------------------------------------- /test/merge/unsorted-versions-132.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/merge/unsorted-versions-132.osm -------------------------------------------------------------------------------- /test/merge/unsorted-versions-133.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/merge/unsorted-versions-133.osm -------------------------------------------------------------------------------- /test/merge/unsorted-versions-21.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/merge/unsorted-versions-21.osm -------------------------------------------------------------------------------- /test/misc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/misc/CMakeLists.txt -------------------------------------------------------------------------------- /test/order/fail-order-n.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/order/fail-order-n.osm -------------------------------------------------------------------------------- /test/order/fail-order-r.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/order/fail-order-r.osm -------------------------------------------------------------------------------- /test/order/fail-order-rw.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/order/fail-order-rw.osm -------------------------------------------------------------------------------- /test/order/fail-order-w.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/order/fail-order-w.osm -------------------------------------------------------------------------------- /test/order/fail-order-wn.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/order/fail-order-wn.osm -------------------------------------------------------------------------------- /test/removeid/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/removeid/CMakeLists.txt -------------------------------------------------------------------------------- /test/removeid/input.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/removeid/input.osm -------------------------------------------------------------------------------- /test/removeid/n12w20.ids: -------------------------------------------------------------------------------- 1 | n12 2 | w20 3 | -------------------------------------------------------------------------------- /test/removeid/output-n10w21.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/removeid/output-n10w21.osm -------------------------------------------------------------------------------- /test/removeid/output-n11n12.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/removeid/output-n11n12.osm -------------------------------------------------------------------------------- /test/removeid/output-n12w20.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/removeid/output-n12w20.osm -------------------------------------------------------------------------------- /test/removeid/output-r30.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/removeid/output-r30.osm -------------------------------------------------------------------------------- /test/renumber/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/renumber/CMakeLists.txt -------------------------------------------------------------------------------- /test/renumber/input-change.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/renumber/input-change.osc -------------------------------------------------------------------------------- /test/renumber/input-norel.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/renumber/input-norel.osm -------------------------------------------------------------------------------- /test/renumber/input-sorted.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/renumber/input-sorted.osm -------------------------------------------------------------------------------- /test/renumber/output-change.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/renumber/output-change.osc -------------------------------------------------------------------------------- /test/renumber/output-norel-change.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/renumber/output-norel-change.osc -------------------------------------------------------------------------------- /test/renumber/output-sorted-n.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/renumber/output-sorted-n.osm -------------------------------------------------------------------------------- /test/renumber/output-sorted-s.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/renumber/output-sorted-s.osm -------------------------------------------------------------------------------- /test/renumber/output-sorted.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/renumber/output-sorted.osm -------------------------------------------------------------------------------- /test/show/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/show/CMakeLists.txt -------------------------------------------------------------------------------- /test/show/input.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/show/input.osm -------------------------------------------------------------------------------- /test/show/output-debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/show/output-debug.txt -------------------------------------------------------------------------------- /test/show/output-opl.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/show/output-opl.opl -------------------------------------------------------------------------------- /test/show/output-xml.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/show/output-xml.osm -------------------------------------------------------------------------------- /test/sort/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/sort/CMakeLists.txt -------------------------------------------------------------------------------- /test/sort/input-bounds1.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/sort/input-bounds1.osm -------------------------------------------------------------------------------- /test/sort/input-bounds2.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/sort/input-bounds2.osm -------------------------------------------------------------------------------- /test/sort/input-change.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/sort/input-change.osc -------------------------------------------------------------------------------- /test/sort/input-history-only-version.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/sort/input-history-only-version.osm -------------------------------------------------------------------------------- /test/sort/input-history-partially-only-version.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/sort/input-history-partially-only-version.osm -------------------------------------------------------------------------------- /test/sort/input-history1.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/sort/input-history1.osm -------------------------------------------------------------------------------- /test/sort/input-history2.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/sort/input-history2.osm -------------------------------------------------------------------------------- /test/sort/input-neg.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/sort/input-neg.osm -------------------------------------------------------------------------------- /test/sort/input-simple-onefile.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/sort/input-simple-onefile.osm -------------------------------------------------------------------------------- /test/sort/input-simple1-only-version.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/sort/input-simple1-only-version.osm -------------------------------------------------------------------------------- /test/sort/input-simple1.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/sort/input-simple1.osm -------------------------------------------------------------------------------- /test/sort/input-simple2.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/sort/input-simple2.osm -------------------------------------------------------------------------------- /test/sort/output-bounds.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/sort/output-bounds.osm -------------------------------------------------------------------------------- /test/sort/output-change.osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/sort/output-change.osc -------------------------------------------------------------------------------- /test/sort/output-history-only-version.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/sort/output-history-only-version.osm -------------------------------------------------------------------------------- /test/sort/output-history-partially-only-version.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/sort/output-history-partially-only-version.osm -------------------------------------------------------------------------------- /test/sort/output-history.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/sort/output-history.osm -------------------------------------------------------------------------------- /test/sort/output-neg.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/sort/output-neg.osm -------------------------------------------------------------------------------- /test/sort/output-simple-1-only-version.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/sort/output-simple-1-only-version.osm -------------------------------------------------------------------------------- /test/sort/output-simple-onefile.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/sort/output-simple-onefile.osm -------------------------------------------------------------------------------- /test/sort/output-simple.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/sort/output-simple.osm -------------------------------------------------------------------------------- /test/tags-filter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/tags-filter/CMakeLists.txt -------------------------------------------------------------------------------- /test/tags-filter/input-nodes.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/tags-filter/input-nodes.osm -------------------------------------------------------------------------------- /test/tags-filter/input-site.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/tags-filter/input-site.osm -------------------------------------------------------------------------------- /test/tags-filter/input.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/tags-filter/input.osm -------------------------------------------------------------------------------- /test/tags-filter/output-amenity.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/tags-filter/output-amenity.osm -------------------------------------------------------------------------------- /test/tags-filter/output-highway-R.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/tags-filter/output-highway-R.osm -------------------------------------------------------------------------------- /test/tags-filter/output-highway-i.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/tags-filter/output-highway-i.osm -------------------------------------------------------------------------------- /test/tags-filter/output-highway-it.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/tags-filter/output-highway-it.osm -------------------------------------------------------------------------------- /test/tags-filter/output-highway-t.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/tags-filter/output-highway-t.osm -------------------------------------------------------------------------------- /test/tags-filter/output-highway.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/tags-filter/output-highway.osm -------------------------------------------------------------------------------- /test/tags-filter/output-nodes-highway-i.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/tags-filter/output-nodes-highway-i.osm -------------------------------------------------------------------------------- /test/tags-filter/output-note-R.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/tags-filter/output-note-R.osm -------------------------------------------------------------------------------- /test/tags-filter/output-note-iR.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/tags-filter/output-note-iR.osm -------------------------------------------------------------------------------- /test/tags-filter/output-note-rel-t.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/tags-filter/output-note-rel-t.osm -------------------------------------------------------------------------------- /test/tags-filter/output-note-rel.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/tags-filter/output-note-rel.osm -------------------------------------------------------------------------------- /test/tags-filter/output-site-1.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/tags-filter/output-site-1.osm -------------------------------------------------------------------------------- /test/tags-filter/output-site-2.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/tags-filter/output-site-2.osm -------------------------------------------------------------------------------- /test/tags-filter/output-site-R-all.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/tags-filter/output-site-R-all.osm -------------------------------------------------------------------------------- /test/tags-filter/output-site-R.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/tags-filter/output-site-R.osm -------------------------------------------------------------------------------- /test/tags-filter/output-site-t.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/tags-filter/output-site-t.osm -------------------------------------------------------------------------------- /test/time-filter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/time-filter/CMakeLists.txt -------------------------------------------------------------------------------- /test/time-filter/input.osh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/time-filter/input.osh -------------------------------------------------------------------------------- /test/time-filter/output-last.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/time-filter/output-last.osm -------------------------------------------------------------------------------- /test/time-filter/output-range-0-5.osh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/time-filter/output-range-0-5.osh -------------------------------------------------------------------------------- /test/time-filter/output-range-1-2.osh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/time-filter/output-range-1-2.osh -------------------------------------------------------------------------------- /test/time-filter/output-range-1a-2a.osh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/time-filter/output-range-1a-2a.osh -------------------------------------------------------------------------------- /test/time-filter/output-range-2-3.osh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/time-filter/output-range-2-3.osh -------------------------------------------------------------------------------- /test/time-filter/output-range-2-3a.osh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/time-filter/output-range-2-3a.osh -------------------------------------------------------------------------------- /test/time-filter/output-range-2-4.osh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/time-filter/output-range-2-4.osh -------------------------------------------------------------------------------- /test/time-filter/output-ts1.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/time-filter/output-ts1.osm -------------------------------------------------------------------------------- /test/time-filter/output-ts2.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/time-filter/output-ts2.osm -------------------------------------------------------------------------------- /test/time-filter/output-ts3.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/time-filter/output-ts3.osm -------------------------------------------------------------------------------- /test/time-filter/test_setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/time-filter/test_setup.cpp -------------------------------------------------------------------------------- /test/unit_tests.cpp: -------------------------------------------------------------------------------- 1 | #define CATCH_CONFIG_MAIN 2 | #include "catch.hpp" // IWYU pragma: keep 3 | -------------------------------------------------------------------------------- /test/util/test_unit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/test/util/test_unit.cpp -------------------------------------------------------------------------------- /zsh_completion/_osmium: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/osmium-tool/HEAD/zsh_completion/_osmium --------------------------------------------------------------------------------