add additional monkeypatch
skip on windows for now, unclear what intent of test is
removed third slash that is the anchor ('/') on posix but would be 'C' on windows
make ParsedPath.from_uri consistent with as_posix usage in init
fix tests
* tests/test_warpedvrt.py - use non deprecated parameters and remove `test_deprecated_param` which is not applicable anymore
* rasterio/vrt.py, rasterio/_warp.pyx - remove deprecated parameters that were marked to be removed in 1.1
* CHANGES.txt - add: WarpedVRT: Remove deprecated dst_* parameters (#2197).
* Consolidate dataset stop methods and test for issue #2000
* Try reverting to see if warped vrt tests will fail
* Undo previous commit
* Make WarpedVRT safer
We're only calling GDALClose now if reference counts are 0 and
insisting that the dataset passed to WarpedVRT be opened in
read-only mode.
Resolves#2000
* Trust in GDAL's reference counting
Towards resolving #1799
* Require GDAL 2
* Revert to local dataset handle
* Run tests under gdb
* Implement GDALDatasetH reference counting in stop()
This keeps datasets used in a WarpedVRT from crashing GDAL and
Python when they are closed before the VRT.
* Bump version
* Remove gdb
* Switch sharing kwarg default to False
Resolves#1705
* Replace GDALOpenShared with GDALOpen except in one shim
* Revert two open_dataset to GDALOpen
* Run tests under gdb
* Increment ref count in WarpedVRTBase
* Open a new dataset handle in WarpedVRT
* Remove gdb
* Remove exceptions from open_dataset in _shim1
Makes usage much easier
* Fix in-memory dataset leaks in _reproject
* No more right multplication with instances of Affine
That usage is deprecated.
* Add a `dtype` keyword argument to the WarpedVRT constructor
It functions like gdalwarp's `-wt` and resolves#1744.
* Add an xfail-ing test
* Add another test with WarpedVRT nodata set
* None means none, not default
We've changed the constructor's nodata defaults to use a flag
that is neither None nor a float.
Resolves#1503
* Test and feature require GDAL 2.2