[osmium-tool] branch master updated (4a6d05b -> 9063e5a)

Bas Couwenberg sebastic at debian.org
Wed Jan 18 19:56:25 UTC 2017


This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch master
in repository osmium-tool.

      from  4a6d05b   Move from experimental to unstable.
       new  2c7d8bb   Imported Upstream version 1.5.0
       new  a72a62a   Merge tag 'upstream/1.5.0'
       new  6a180e2   New upstream release.
       new  ac48aed   Update copyright years for Jochen Topf.
       new  d4503a3   Include extract config examples.
       new  d4c9865   Add patch to fix spelling errors.
       new  9063e5a   Set distribution to experimental.

The 7 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CHANGELOG.md                                       |  11 +-
 CMakeLists.txt                                     |   9 +-
 README.md                                          |  15 +-
 debian/changelog                                   |   9 +
 debian/copyright                                   |   2 +-
 debian/examples                                    |   1 +
 debian/patches/series                              |   1 +
 debian/patches/spelling-errors.patch               |  16 +
 doc/manual.md                                      | 495 ---------------------
 doc/osmium-show.png                                | Bin 51357 -> 0 bytes
 extract-example-config/README.md                   |  17 +
 extract-example-config/berlin.geojson              | 122 +++++
 extract-example-config/berlin.poly                 | 115 +++++
 extract-example-config/brandenburg.poly            | 275 ++++++++++++
 extract-example-config/extracts.json               | 135 ++++++
 extract-example-config/hamburg.poly                |  71 +++
 extract-example-config/karlsruhe.osm.bz2           | Bin 0 -> 16630 bytes
 man/manpage.template                               |   2 +-
 man/osmium-add-locations-to-ways.md                |   2 +-
 man/osmium-apply-changes.md                        |   2 +-
 man/osmium-cat.md                                  |   2 +-
 man/osmium-changeset-filter.md                     |   2 +-
 man/osmium-check-refs.md                           |   2 +-
 man/osmium-derive-changes.md                       |   2 +-
 man/osmium-diff.md                                 |   6 +-
 man/osmium-extract.md                              | 361 +++++++++++++++
 man/osmium-file-formats.md                         |  25 +-
 man/osmium-fileinfo.md                             |   2 +-
 man/osmium-getid.md                                |   2 +-
 man/osmium-merge-changes.md                        |   2 +-
 man/osmium-merge.md                                |   2 +-
 man/osmium-renumber.md                             |   4 +-
 man/osmium-show.md                                 |   2 +-
 man/osmium-sort.md                                 |   2 +-
 man/osmium-time-filter.md                          |   2 +-
 man/osmium.md                                      |   5 +-
 .../osm-history-splitter2osmium-extract-config.sh  |  32 ++
 src/CMakeLists.txt                                 |   2 +-
 src/cmd.cpp                                        |  12 +-
 src/cmd.hpp                                        |  15 +-
 src/cmd_factory.cpp                                |   4 +-
 src/command_add_locations_to_ways.cpp              |   5 +-
 src/command_add_locations_to_ways.hpp              |   4 +-
 src/command_apply_changes.cpp                      |  51 ++-
 src/command_apply_changes.hpp                      |   4 +-
 src/command_cat.cpp                                |   5 +-
 src/command_cat.hpp                                |   4 +-
 src/command_changeset_filter.cpp                   |   4 +-
 src/command_changeset_filter.hpp                   |   4 +-
 src/command_check_refs.cpp                         |   5 +-
 src/command_check_refs.hpp                         |   4 +-
 src/command_derive_changes.cpp                     |   5 +-
 src/command_derive_changes.hpp                     |   4 +-
 src/command_diff.cpp                               |   7 +-
 src/command_diff.hpp                               |   4 +-
 src/command_extract.cpp                            | 486 ++++++++++++++++++++
 src/command_extract.hpp                            |  79 ++++
 src/command_fileinfo.cpp                           |   5 +-
 src/command_fileinfo.hpp                           |   4 +-
 src/command_getid.cpp                              |   5 +-
 src/command_getid.hpp                              |   4 +-
 src/command_help.cpp                               |   8 +-
 src/command_help.hpp                               |   4 +-
 src/command_merge.cpp                              |  96 ++--
 src/command_merge.hpp                              |   4 +-
 src/command_merge_changes.cpp                      |   4 +-
 src/command_merge_changes.hpp                      |   4 +-
 src/command_renumber.cpp                           |   4 +-
 src/command_renumber.hpp                           |   4 +-
 src/command_show.cpp                               |   4 +-
 src/command_show.hpp                               |   4 +-
 src/command_sort.cpp                               |   4 +-
 src/command_sort.hpp                               |   4 +-
 src/command_time_filter.cpp                        |   5 +-
 src/command_time_filter.hpp                        |   4 +-
 src/exception.hpp                                  |   4 +-
 src/{exception.hpp => extract/error.hpp}           |  31 +-
 src/extract/extract.cpp                            |  58 +++
 src/extract/extract.hpp                            | 101 +++++
 src/{command_help.hpp => extract/extract_bbox.cpp} |  46 +-
 src/{exception.hpp => extract/extract_bbox.hpp}    |  31 +-
 src/extract/extract_polygon.cpp                    | 161 +++++++
 src/extract/extract_polygon.hpp                    |  65 +++
 src/extract/geojson_file_parser.cpp                | 191 ++++++++
 src/extract/geojson_file_parser.hpp                |  58 +++
 src/extract/osm_file_parser.cpp                    |  85 ++++
 src/{exception.hpp => extract/osm_file_parser.hpp} |  34 +-
 src/extract/poly_file_parser.cpp                   | 133 ++++++
 src/extract/poly_file_parser.hpp                   |  78 ++++
 src/extract/strategy.hpp                           | 173 +++++++
 src/extract/strategy_complete_ways.cpp             | 176 ++++++++
 src/extract/strategy_complete_ways.hpp             |  65 +++
 .../strategy_complete_ways_with_history.cpp        | 186 ++++++++
 .../strategy_complete_ways_with_history.hpp        |  65 +++
 src/extract/strategy_simple.cpp                    | 113 +++++
 src/extract/strategy_simple.hpp                    |  60 +++
 src/extract/strategy_smart.cpp                     | 255 +++++++++++
 src/extract/strategy_smart.hpp                     |  75 ++++
 src/io.cpp                                         |  27 +-
 src/main.cpp                                       |   6 +-
 src/util.cpp                                       |  69 +++
 src/{exception.hpp => util.hpp}                    |  34 +-
 test/CMakeLists.txt                                |   9 +-
 test/extract/empty-root.geojson                    |   1 +
 .../empty.osm.opl => extract/empty.geojson}        |   0
 test/{formats => extract}/empty.osm.opl            |   0
 test/{formats/empty.osm.opl => extract/empty.poly} |   0
 test/extract/invalid-root.geojson                  |   1 +
 test/extract/invalid.geojson                       |   1 +
 test/extract/missing-end-polygon.poly              |   8 +
 test/extract/missing-end-ring.poly                 |   7 +
 test/extract/multipolygon.osm.opl                  |  17 +
 test/extract/no-polygon.osm.opl                    |   5 +
 test/extract/one-line.poly                         |   1 +
 test/extract/polygon-crlf.poly                     |   9 +
 test/extract/polygon-one-outer.poly                |   9 +
 test/extract/polygon-outer-inner.poly              |  16 +
 test/extract/polygon-two-outer.poly                |  16 +
 test/extract/polygon-two-ways.osm.opl              |  10 +
 test/extract/polygon-way.osm.opl                   |   5 +
 test/extract/test_unit.cpp                         | 277 ++++++++++++
 test/extract/two-line.poly                         |   2 +
 test/extract/two-polygons-empty-line.poly          |  26 ++
 test/extract/two-polygons.poly                     |  25 ++
 test/extract/wrong-geometry-type.geojson           |   6 +
 test/include/catch.hpp                             |  14 +-
 test/util/test_unit.cpp                            |  25 ++
 zsh_completion/_osmium                             |  45 +-
 128 files changed, 4737 insertions(+), 812 deletions(-)
 create mode 100644 debian/examples
 create mode 100644 debian/patches/series
 create mode 100644 debian/patches/spelling-errors.patch
 delete mode 100644 doc/manual.md
 delete mode 100644 doc/osmium-show.png
 create mode 100644 extract-example-config/README.md
 create mode 100644 extract-example-config/berlin.geojson
 create mode 100644 extract-example-config/berlin.poly
 create mode 100644 extract-example-config/brandenburg.poly
 create mode 100644 extract-example-config/extracts.json
 create mode 100644 extract-example-config/hamburg.poly
 create mode 100644 extract-example-config/karlsruhe.osm.bz2
 create mode 100644 man/osmium-extract.md
 create mode 100755 scripts/osm-history-splitter2osmium-extract-config.sh
 create mode 100644 src/command_extract.cpp
 create mode 100644 src/command_extract.hpp
 copy src/{exception.hpp => extract/error.hpp} (53%)
 create mode 100644 src/extract/extract.cpp
 create mode 100644 src/extract/extract.hpp
 copy src/{command_help.hpp => extract/extract_bbox.cpp} (51%)
 copy src/{exception.hpp => extract/extract_bbox.hpp} (51%)
 create mode 100644 src/extract/extract_polygon.cpp
 create mode 100644 src/extract/extract_polygon.hpp
 create mode 100644 src/extract/geojson_file_parser.cpp
 create mode 100644 src/extract/geojson_file_parser.hpp
 create mode 100644 src/extract/osm_file_parser.cpp
 copy src/{exception.hpp => extract/osm_file_parser.hpp} (56%)
 create mode 100644 src/extract/poly_file_parser.cpp
 create mode 100644 src/extract/poly_file_parser.hpp
 create mode 100644 src/extract/strategy.hpp
 create mode 100644 src/extract/strategy_complete_ways.cpp
 create mode 100644 src/extract/strategy_complete_ways.hpp
 create mode 100644 src/extract/strategy_complete_ways_with_history.cpp
 create mode 100644 src/extract/strategy_complete_ways_with_history.hpp
 create mode 100644 src/extract/strategy_simple.cpp
 create mode 100644 src/extract/strategy_simple.hpp
 create mode 100644 src/extract/strategy_smart.cpp
 create mode 100644 src/extract/strategy_smart.hpp
 create mode 100644 src/util.cpp
 copy src/{exception.hpp => util.hpp} (58%)
 create mode 100644 test/extract/empty-root.geojson
 copy test/{formats/empty.osm.opl => extract/empty.geojson} (100%)
 copy test/{formats => extract}/empty.osm.opl (100%)
 copy test/{formats/empty.osm.opl => extract/empty.poly} (100%)
 create mode 100644 test/extract/invalid-root.geojson
 create mode 100644 test/extract/invalid.geojson
 create mode 100644 test/extract/missing-end-polygon.poly
 create mode 100644 test/extract/missing-end-ring.poly
 create mode 100644 test/extract/multipolygon.osm.opl
 create mode 100644 test/extract/no-polygon.osm.opl
 create mode 100644 test/extract/one-line.poly
 create mode 100644 test/extract/polygon-crlf.poly
 create mode 100644 test/extract/polygon-one-outer.poly
 create mode 100644 test/extract/polygon-outer-inner.poly
 create mode 100644 test/extract/polygon-two-outer.poly
 create mode 100644 test/extract/polygon-two-ways.osm.opl
 create mode 100644 test/extract/polygon-way.osm.opl
 create mode 100644 test/extract/test_unit.cpp
 create mode 100644 test/extract/two-line.poly
 create mode 100644 test/extract/two-polygons-empty-line.poly
 create mode 100644 test/extract/two-polygons.poly
 create mode 100644 test/extract/wrong-geometry-type.geojson
 create mode 100644 test/util/test_unit.cpp

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/osmium-tool.git



More information about the Pkg-grass-devel mailing list