[mapnik-vector-tile] 02/07: Merge tag 'upstream/1.0.1+dfsg'

Sebastiaan Couwenberg sebastic at moszumanska.debian.org
Fri Feb 26 23:10:38 UTC 2016


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

sebastic pushed a commit to branch master
in repository mapnik-vector-tile.

commit 86922a543b76404eb86534817e93830061574d32
Merge: 381d648 79a8908
Author: Bas Couwenberg <sebastic at xs4all.nl>
Date:   Fri Feb 26 21:25:11 2016 +0100

    Merge tag 'upstream/1.0.1+dfsg'
    
    Upstream version 1.0.1+dfsg

 .travis.yml                                        |    2 +-
 CHANGELOG.md                                       |   25 +
 Makefile                                           |    6 +-
 ...r.pbf => enf.t5yd5cdi_14_13089_8506.vector.mvt} |  Bin
 ...ctor.pbf => multi_line_13_1310_3166.vector.mvt} |  Bin
 bench/{notes.md => readme.md}                      |   55 +-
 bench/run-bench.sh                                 |   33 +
 bench/vtile-decode.cpp                             |   38 +-
 bench/vtile-encode.cpp                             |  187 +++
 bench/vtile-transform.cpp                          |   61 +-
 bin/vtile-edit.cpp                                 |  134 ++
 examples/c++/Makefile                              |    4 +-
 examples/c++/README.md                             |    2 +-
 examples/c++/tileinfo.cpp                          |    6 +
 ...6331.vector.pbf.z => 14_2620_6331.vector.mvt.z} |  Bin
 ...716_8015.vector.pbf => 14_8716_8015.vector.mvt} |  Bin
 gyp/build.gyp                                      |   36 +-
 package.json                                       |    4 +-
 scripts/build.sh                                   |    4 +-
 src/vector_tile_backend_pbf.cpp                    |    2 -
 src/vector_tile_backend_pbf.hpp                    |   71 -
 src/vector_tile_backend_pbf.ipp                    |  160 --
 src/vector_tile_composite.hpp                      |  105 ++
 src/vector_tile_compression.hpp                    |   58 +-
 src/vector_tile_compression.ipp                    |   33 +-
 src/vector_tile_config.hpp                         |   66 +-
 src/vector_tile_datasource.cpp                     |    2 -
 src/vector_tile_datasource.hpp                     |   52 -
 src/vector_tile_datasource.ipp                     |  328 ----
 src/vector_tile_datasource_pbf.hpp                 |  107 +-
 src/vector_tile_datasource_pbf.ipp                 |  557 +++----
 src/vector_tile_featureset_pbf.cpp                 |    6 +
 src/vector_tile_featureset_pbf.hpp                 |   73 +
 src/vector_tile_featureset_pbf.ipp                 |  325 ++++
 src/vector_tile_geometry_clipper.hpp               |  479 ++++++
 src/vector_tile_geometry_decoder.cpp               |   20 +
 src/vector_tile_geometry_decoder.hpp               |  575 +------
 src/vector_tile_geometry_decoder.ipp               |  902 +++++++++++
 src/vector_tile_geometry_encoder.hpp               |  215 ---
 src/vector_tile_geometry_encoder_pbf.cpp           |    2 +
 src/vector_tile_geometry_encoder_pbf.hpp           |   67 +
 src/vector_tile_geometry_encoder_pbf.ipp           |  307 ++++
 src/vector_tile_geometry_feature.hpp               |   86 ++
 src/vector_tile_geometry_intersects.cpp            |    2 +
 src/vector_tile_geometry_intersects.hpp            |   55 +
 src/vector_tile_geometry_intersects.ipp            |   84 +
 src/vector_tile_geometry_simplifier.hpp            |   99 ++
 src/vector_tile_is_valid.hpp                       |  304 ++++
 src/vector_tile_layer.cpp                          |    2 +
 src/vector_tile_layer.hpp                          |  374 +++++
 src/vector_tile_layer.ipp                          |  131 ++
 src/vector_tile_load_tile.hpp                      |  135 ++
 src/vector_tile_merc_tile.hpp                      |   82 +
 src/vector_tile_processor.cpp                      |    2 -
 src/vector_tile_processor.hpp                      |  220 ++-
 src/vector_tile_processor.ipp                      | 1618 ++++---------------
 src/vector_tile_projection.hpp                     |   50 +-
 src/vector_tile_projection.ipp                     |   42 +-
 src/vector_tile_raster_clipper.cpp                 |    2 +
 src/vector_tile_raster_clipper.hpp                 |  102 ++
 src/vector_tile_raster_clipper.ipp                 |  523 +++++++
 src/vector_tile_strategy.hpp                       |  121 +-
 src/vector_tile_tile.cpp                           |    2 +
 src/vector_tile_tile.hpp                           |  211 +++
 src/vector_tile_tile.ipp                           |  108 ++
 src/vector_tile_util.cpp                           |    2 -
 src/vector_tile_util.hpp                           |   23 -
 src/vector_tile_util.ipp                           |  256 ----
 test/clipper_test.cpp                              |   72 +-
 test/data/0.0.0.vector-b.mvt                       |  Bin 0 -> 2835 bytes
 test/data/0.0.0.vector-b.pbf                       |  Bin 2774 -> 0 bytes
 test/data/{0.0.0.vector.pbf => 0.0.0.vector.mvt}   |  Bin
 ...field.pbf => tile_with_extra_feature_field.mvt} |    0
 ...h_extra_field.pbf => tile_with_extra_field.mvt} |    0
 ...fields.pbf => tile_with_extra_layer_fields.mvt} |    0
 ....pbf => tile_with_invalid_layer_value_type.mvt} |    0
 ...mtype.pbf => tile_with_unexpected_geomtype.mvt} |    0
 test/encoding_util.cpp                             |  131 --
 test/encoding_util.hpp                             |   25 -
 test/fixtures/expected-4.png                       |  Bin 8955 -> 9102 bytes
 test/geometry_encoding.cpp                         |  691 ---------
 test/geometry_visual_test.cpp                      |  184 ++-
 test/raster_tile.cpp                               |  312 ++--
 test/system/encode_and_datasource_decode.cpp       |  119 ++
 test/system/encode_and_decode.cpp                  |  138 ++
 test/system/processor_and_datasource.cpp           |  321 ++++
 test/system/remove_repeated_point.cpp              |   23 +
 test/system/round_trip.cpp                         |  247 +++
 test/system/round_trip_fill_type.cpp               |   65 +
 test/system/round_trip_simplification.cpp          |  144 ++
 test/test_utils.cpp                                |   21 +-
 test/test_utils.hpp                                |    2 +-
 test/unit/composite/vector.cpp                     |   15 +
 test/unit/compression/compression.cpp              |  460 ++++++
 test/unit/datasource-pbf/from_layer.cpp            |  298 ++++
 test/unit/decoding/linestring.cpp                  |  554 +++++++
 test/unit/decoding/point.cpp                       |  365 +++++
 test/unit/decoding/polygon.cpp                     | 1621 ++++++++++++++++++++
 test/unit/decoding/polygon_scaling.cpp             |  471 ++++++
 test/unit/encoding/linestring_pbf.cpp              |  439 ++++++
 test/unit/encoding/point_pbf.cpp                   |  202 +++
 test/unit/encoding/polygon_pbf.cpp                 |  588 +++++++
 test/unit/is_valid/feature_is_valid.cpp            |  134 ++
 test/unit/is_valid/value_is_valid.cpp              |  204 +++
 test/unit/tile_impl/tile.cpp                       |  496 ++++++
 test/utils/decoding_util.cpp                       |   16 +
 test/utils/decoding_util.hpp                       |   10 +
 test/utils/encoding_util.cpp                       |   82 +
 test/utils/encoding_util.hpp                       |   16 +
 test/utils/geom_to_wkt.cpp                         |   17 +
 test/utils/geom_to_wkt.hpp                         |   10 +
 test/utils/geometry_equal.hpp                      |  235 +++
 test/utils/round_trip.cpp                          |   89 ++
 test/utils/round_trip.hpp                          |   15 +
 test/vector_tile.cpp                               | 1326 ++--------------
 test/vector_tile_pbf.cpp                           |  371 +++--
 test/vector_tile_rasterize.cpp                     |  100 +-
 117 files changed, 14189 insertions(+), 6185 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/mapnik-vector-tile.git



More information about the Pkg-grass-devel mailing list