[rasterio] branch upstream updated (3f08f96 -> bf74bbb)
Bas Couwenberg
sebastic at debian.org
Wed Jun 15 20:48:37 UTC 2016
This is an automated email from the git hooks/post-receive script.
sebastic pushed a change to branch upstream
in repository rasterio.
from 3f08f96 Imported Upstream version 0.35.1
new bf74bbb Imported Upstream version 0.36.0
The 1 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:
.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/{tools/__init__.py => _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(-)
create mode 100644 CITATION.txt
create mode 100644 CONTRIBUTING.rst
create mode 100644 docs/_build/html/.nojekyll
create mode 100644 examples/Data visualization.ipynb
create mode 100755 pep-508-install
create mode 100644 pyproject.toml
copy rasterio/{tools/__init__.py => _crs.pxd} (100%)
create mode 100644 rasterio/_crs.pyx
rename rasterio/{five.py => compat.py} (87%)
create mode 100644 tests/test_dataset_mask.py
create mode 100644 tests/test_plot.py
create mode 100644 tests/test_reshape_image.py
--
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