[rasterio] 02/07: Merge tag 'upstream/0.36.0'

Bas Couwenberg sebastic at debian.org
Wed Jun 15 20:48:35 UTC 2016


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

sebastic pushed a commit to branch master
in repository rasterio.

commit e2e495b3ecd5c12696aaa0af9870dac54ff15099
Merge: a08f016 bf74bbb
Author: Bas Couwenberg <sebastic at xs4all.nl>
Date:   Wed Jun 15 19:18:56 2016 +0200

    Merge tag 'upstream/0.36.0'
    
    Upstream version 0.36.0

 .gitignore                        |    1 +
 .travis.yml                       |    5 +
 AUTHORS.txt                       |   47 +-
 CHANGES.txt                       |   49 +
 CITATION.txt                      |   10 +
 CONTRIBUTING.rst                  |  212 ++++
 README.rst                        |  118 ++-
 docs/Makefile                     |    6 +-
 docs/_build/html/.nojekyll        |    1 +
 docs/cli.rst                      |    7 +-
 docs/color.rst                    |    2 +-
 docs/concurrency.rst              |   10 +-
 docs/configuration.rst            |    2 +-
 docs/cookbook.rst                 |    4 +-
 docs/features.rst                 |    4 +-
 docs/georeferencing.rst           |   12 +-
 docs/image_options.rst            |    4 +-
 docs/image_processing.rst         |   24 +-
 docs/installation.rst             |    8 +-
 docs/masks.rst                    |    6 +-
 docs/osgeo_gdal_migration.rst     |    4 +-
 docs/reading.rst                  |    4 +-
 docs/recipes/reproject.py         |    2 +-
 docs/reproject.rst                |   18 +-
 docs/tags.rst                     |    2 +-
 docs/windowed-rw.rst              |    4 +-
 docs/working_with_datasets.rst    |   12 +-
 docs/writing.rst                  |   24 +-
 examples/Data visualization.ipynb | 2083 +++++++++++++++++++++++++++++++++++++
 examples/async-rasterio.py        |   22 +-
 examples/concurrent-cpu-bound.py  |   11 +-
 examples/decimate.py              |    2 +-
 examples/rasterio_polygonize.py   |   26 +-
 examples/rasterize_geometry.py    |    8 +-
 examples/reproject.py             |   20 +-
 examples/sieve.py                 |   13 +-
 examples/total.py                 |    7 +-
 pep-508-install                   |   34 +
 pyproject.toml                    |    3 +
 rasterio/__init__.py              |   10 +-
 rasterio/_base.pxd                |    2 +-
 rasterio/_base.pyx                |  178 ++--
 rasterio/_crs.pxd                 |    0
 rasterio/_crs.pyx                 |   64 ++
 rasterio/_drivers.pyx             |    2 +-
 rasterio/_err.pyx                 |   10 +-
 rasterio/_example.pyx             |    6 +-
 rasterio/_io.pyx                  |  128 ++-
 rasterio/_warp.pyx                |   47 +-
 rasterio/{five.py => compat.py}   |    2 +
 rasterio/crs.py                   |  211 ++--
 rasterio/dtypes.py                |   22 +-
 rasterio/env.py                   |   11 +-
 rasterio/plot.py                  |  260 +++--
 rasterio/rio/bounds.py            |    3 +-
 rasterio/rio/calc.py              |    3 +-
 rasterio/rio/clip.py              |    3 +-
 rasterio/rio/convert.py           |    3 +-
 rasterio/rio/edit_info.py         |   14 +-
 rasterio/rio/env.py               |    4 +-
 rasterio/rio/helpers.py           |    2 +-
 rasterio/rio/info.py              |   10 +-
 rasterio/rio/insp.py              |   20 +-
 rasterio/rio/main.py              |   41 +-
 rasterio/rio/mask.py              |    5 +-
 rasterio/rio/merge.py             |   16 +-
 rasterio/rio/options.py           |    7 +-
 rasterio/rio/overview.py          |    3 +-
 rasterio/rio/rasterize.py         |   31 +-
 rasterio/rio/sample.py            |    3 +-
 rasterio/rio/shapes.py            |   18 +-
 rasterio/rio/stack.py             |    6 +-
 rasterio/rio/transform.py         |    3 +-
 rasterio/rio/warp.py              |   46 +-
 rasterio/vfs.py                   |    6 +-
 rasterio/warp.py                  |   48 +-
 requirements-dev.txt              |    3 +-
 setup.py                          |   33 +-
 tests/__init__.py                 |    1 -
 tests/conftest.py                 |   28 +-
 tests/test_blocks.py              |   18 +-
 tests/test_colorinterp.py         |    3 +-
 tests/test_copy.py                |    8 +-
 tests/test_crs.py                 |  124 ++-
 tests/test_dataset_mask.py        |  182 ++++
 tests/test_deprecations.py        |   28 +-
 tests/test_driver_management.py   |   14 +-
 tests/test_dtypes.py              |   23 +-
 tests/test_env.py                 |   70 +-
 tests/test_err.py                 |    6 +
 tests/test_features.py            |  314 +++---
 tests/test_fillnodata.py          |   16 +-
 tests/test_image_structure.py     |    2 +-
 tests/test_indexing.py            |   12 +-
 tests/test_mask_creation.py       |   31 +-
 tests/test_pad.py                 |    4 +-
 tests/test_plot.py                |  264 +++++
 tests/test_png.py                 |    8 +-
 tests/test_read.py                |  122 ++-
 tests/test_read_boundless.py      |   12 +-
 tests/test_read_resample.py       |   12 +-
 tests/test_reshape_image.py       |   26 +
 tests/test_rio_convert.py         |    4 +-
 tests/test_rio_features.py        |   72 +-
 tests/test_rio_info.py            |   14 +-
 tests/test_rio_merge.py           |   56 +-
 tests/test_rio_options.py         |    4 +-
 tests/test_rio_warp.py            |   96 +-
 tests/test_tool.py                |   16 +-
 tests/test_update.py              |    4 +-
 tests/test_warp.py                |  300 ++++--
 tests/test_warp_transform.py      |   19 +-
 tests/test_write.py               |   58 +-
 113 files changed, 4891 insertions(+), 1195 deletions(-)

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



More information about the Pkg-grass-devel mailing list