This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch upstream in repository rasterio.
from 11f4a62 Imported Upstream version 0.34.0 new cf4a577 Imported Upstream version 0.35.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: .travis.yml | 5 +- AUTHORS.txt | 1 + CHANGES.txt | 26 +++- README.rst | 130 +++++----------- cloudformation/testuser.json | 64 ++++++++ docs/color.rst | 2 +- docs/concurrency.rst | 6 +- docs/configuration.rst | 88 +++++++++++ docs/cookbook.rst | 39 +++-- docs/data_model.rst | 5 +- docs/features.rst | 2 +- docs/image_options.rst | 55 +++++-- docs/img/green_box_kmz.png | Bin 0 -> 1452013 bytes docs/index.rst | 2 + docs/installation.rst | 10 ++ docs/osgeo_gdal_migration.rst | 6 +- docs/rasterio.rst | 12 ++ docs/{recipies => recipes}/band_summary_stats.py | 0 docs/{recipies => recipes}/filter.py | 0 docs/{recipies => recipes}/mask_shp.py | 0 docs/recipes/raster_to_kmz.py | 57 +++++++ docs/{recipies => recipes}/reproject.py | 0 docs/{recipies => recipes}/saturation.py | 0 docs/reproject.rst | 2 +- docs/resampling.rst | 110 ++++++++++++- docs/windowed-rw.rst | 27 ++-- docs/working_with_datasets.rst | 28 +++- docs/writing.rst | 1 - examples/async-rasterio.py | 4 +- examples/concurrent-cpu-bound.py | 7 +- examples/decimate.py | 3 +- examples/rasterize_geometry.py | 10 +- examples/reproject.py | 2 +- examples/sieve.py | 2 +- examples/total.py | 2 +- rasterio/__init__.py | 162 +++++++++++-------- rasterio/_base.pxd | 1 - rasterio/_base.pyx | 54 +++---- rasterio/_copy.pyx | 9 +- rasterio/_drivers.pyx | 145 +++++++++-------- rasterio/_features.pyx | 11 +- rasterio/_fill.pyx | 4 +- rasterio/_io.pyx | 68 ++++---- rasterio/_warp.pyx | 27 +--- rasterio/aws.py | 61 -------- rasterio/coords.py | 9 +- rasterio/crs.py | 42 +++-- rasterio/dtypes.py | 45 +++--- rasterio/enums.py | 116 ++++++++------ rasterio/env.py | 188 ++++++++++++++++++++++ rasterio/errors.py | 17 +- rasterio/features.py | 70 ++++----- rasterio/fill.py | 13 +- rasterio/five.py | 9 +- rasterio/mask.py | 6 +- rasterio/merge.py | 28 ++-- rasterio/plot.py | 28 ++-- rasterio/profiles.py | 5 +- rasterio/rio/bounds.py | 12 +- rasterio/rio/calc.py | 16 +- rasterio/rio/clip.py | 4 +- rasterio/rio/convert.py | 4 +- rasterio/rio/edit_info.py | 4 +- rasterio/rio/env.py | 4 +- rasterio/rio/info.py | 10 +- rasterio/rio/insp.py | 12 +- rasterio/rio/main.py | 26 +--- rasterio/rio/mask.py | 8 +- rasterio/rio/merge.py | 29 ++-- rasterio/rio/overview.py | 16 +- rasterio/rio/rasterize.py | 8 +- rasterio/rio/sample.py | 4 +- rasterio/rio/shapes.py | 13 +- rasterio/rio/stack.py | 14 +- rasterio/rio/transform.py | 5 +- rasterio/rio/warp.py | 18 ++- rasterio/tool.py | 17 +- rasterio/transform.py | 27 +++- rasterio/vfs.py | 24 +-- rasterio/warnings.py | 9 -- rasterio/warp.py | 62 +++++--- rasterio/windows.py | 43 +++-- requirements-dev.txt | 4 +- requirements.txt | 3 +- scripts/travis_gdal_install.sh | 6 +- setup.py | 31 ++-- tests/README.rst | 20 +++ tests/conftest.py | 33 ++-- tests/data/alpha.tif | Bin 0 -> 105793 bytes tests/data/world.rgb.tif | Bin 0 -> 411822 bytes tests/test_aws.py | 135 ---------------- tests/test_band.py | 7 +- tests/test_band_masks.py | 24 ++- tests/test_blocks.py | 6 +- tests/test_colorinterp.py | 44 +++--- tests/test_colormap.py | 59 +++---- tests/test_crs.py | 31 ++-- tests/test_deprecations.py | 85 +++++++++- tests/test_driver_management.py | 73 +++++---- tests/test_env.py | 190 +++++++++++++++++++++++ tests/test_err.py | 8 +- tests/test_features.py | 87 ++++++----- tests/test_indexing.py | 113 ++++++++++---- tests/test_mask_creation.py | 14 +- tests/test_nodata.py | 26 ++-- tests/test_open.py | 22 +++ tests/test_overviews.py | 21 ++- tests/test_png.py | 2 +- tests/test_read.py | 18 +-- tests/test_read_boundless.py | 15 ++ tests/test_read_resample.py | 12 ++ tests/test_revolvingdoor.py | 4 +- tests/test_rio_convert.py | 13 +- tests/test_rio_features.py | 65 +++++++- tests/test_rio_info.py | 7 + tests/test_rio_merge.py | 121 ++++++++------- tests/test_rio_overview.py | 3 +- tests/test_rio_stack.py | 1 + tests/test_rio_warp.py | 71 ++++++++- tests/test_tool.py | 64 ++++---- tests/test_transform.py | 9 ++ tests/test_update.py | 25 ++- tests/test_vfs.py | 10 +- tests/test_warnings.py | 2 +- tests/test_warp.py | 88 ++++++----- tests/test_warp_transform.py | 13 +- tests/test_write.py | 144 ++++++++--------- 127 files changed, 2477 insertions(+), 1467 deletions(-) create mode 100644 cloudformation/testuser.json create mode 100644 docs/configuration.rst create mode 100644 docs/img/green_box_kmz.png rename docs/{recipies => recipes}/band_summary_stats.py (100%) rename docs/{recipies => recipes}/filter.py (100%) rename docs/{recipies => recipes}/mask_shp.py (100%) create mode 100644 docs/recipes/raster_to_kmz.py rename docs/{recipies => recipes}/reproject.py (100%) rename docs/{recipies => recipes}/saturation.py (100%) delete mode 100644 rasterio/aws.py create mode 100644 rasterio/env.py delete mode 100644 rasterio/warnings.py create mode 100644 tests/README.rst create mode 100644 tests/data/alpha.tif create mode 100644 tests/data/world.rgb.tif delete mode 100644 tests/test_aws.py create mode 100644 tests/test_env.py create mode 100644 tests/test_open.py -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/rasterio.git _______________________________________________ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel