|
Rasterio's general discussion group is open for business
Greetings, Questions about installation, distribution, and usage of Rasterio are welcome here. Issues opened in Rasterio's GitHub repo that fall into one these categories may be perfunctorily closed.
Greetings, Questions about installation, distribution, and usage of Rasterio are welcome here. Issues opened in Rasterio's GitHub repo that fall into one these categories may be perfunctorily closed.
|
By
Sean Gillies
· #2
·
|
|
Rasterio 1.0rc3
Hi all, I almost forgot to announce here before the holiday! The Rasterio 1.0rc3 source distribution and wheels for macos 10.9 (or greater) and manylinux1 platforms are on PyPI now: https://pypi.org/p
Hi all, I almost forgot to announce here before the holiday! The Rasterio 1.0rc3 source distribution and wheels for macos 10.9 (or greater) and manylinux1 platforms are on PyPI now: https://pypi.org/p
|
By
Sean Gillies
· #3
·
|
|
Does rasterio load data into memory while reprojecting?
Hi Denis, Yes, you can warp arbitrarily large rasters when you use rasterio.band(). The warper chunks the work so that its working arrays are no more than 64 MB in size. You can increase this limit wi
Hi Denis, Yes, you can warp arbitrarily large rasters when you use rasterio.band(). The warper chunks the work so that its working arrays are no more than 64 MB in size. You can increase this limit wi
|
By
Sean Gillies
· #5
·
|
|
Rasterio 1.0rc4
Hi all, The Rasterio 1.0rc4 source distribution and wheels for macos 10.9 (or greater) and manylinux1 platforms are on PyPI now: https://pypi.org/project/rasterio/1.0rc4/. Please remember that pip ins
Hi all, The Rasterio 1.0rc4 source distribution and wheels for macos 10.9 (or greater) and manylinux1 platforms are on PyPI now: https://pypi.org/project/rasterio/1.0rc4/. Please remember that pip ins
|
By
Sean Gillies
· #7
·
|
|
Rasterio 1.0rc5
Hi all, The Rasterio 1.0rc5 source distribution and wheels for macos 10.9 (or greater) and manylinux1 platforms are on PyPI now: https://pypi.org/project/rasterio/1.0rc5/. Please remember that pip ins
Hi all, The Rasterio 1.0rc5 source distribution and wheels for macos 10.9 (or greater) and manylinux1 platforms are on PyPI now: https://pypi.org/project/rasterio/1.0rc5/. Please remember that pip ins
|
By
Sean Gillies
· #8
·
|
|
Rasterio 1.0.0
Hi, all. We, the authors, are pleased to announce the release of Rasterio 1.0.0. What is the significance of 1.0.0? Stability. After more than a year of changes, there is at last a stable base for app
Hi, all. We, the authors, are pleased to announce the release of Rasterio 1.0.0. What is the significance of 1.0.0? Stability. After more than a year of changes, there is at last a stable base for app
|
By
Sean Gillies
· #11
·
|
|
LERC Compression Error
Hi Caleb, Sure, a PR would be welcome. This compression algorithm isn't available in a GDAL release yet, but it doesn't do any harm to have it enumerated in Rasterio. Behavior for Rasterio 1.0.0 and G
Hi Caleb, Sure, a PR would be welcome. This compression algorithm isn't available in a GDAL release yet, but it doesn't do any harm to have it enumerated in Rasterio. Behavior for Rasterio 1.0.0 and G
|
By
Sean Gillies
· #18
·
|
|
Copying Rasterio crs from input to output dataset
Hi Luke, Unfortunately, I cannot reproduce your results on my computer. $ python Python 3.6.6 (v3.6.6:4cf1f54eb7, Jun 26 2018, 19:50:54) [GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.57)] on darwi
Hi Luke, Unfortunately, I cannot reproduce your results on my computer. $ python Python 3.6.6 (v3.6.6:4cf1f54eb7, Jun 26 2018, 19:50:54) [GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.57)] on darwi
|
By
Sean Gillies
· #19
·
|
|
Reproject with mask preserving
Hi Denis, As you discovered in your post to gdal-dev, GDAL's warper doesn't output internal (or sidecar) mask bands. You must materialize these into an alpha band and then copy the data to produce a n
Hi Denis, As you discovered in your post to gdal-dev, GDAL's warper doesn't output internal (or sidecar) mask bands. You must materialize these into an alpha band and then copy the data to produce a n
|
By
Sean Gillies
· #23
·
|
|
Rasterio 1.0.1
Hi all, Rasterio 1.0.1 is on PyPI now. It fixes 4 bugs found since 1.0.0: - Bounding envelopes are densified at higher precision in transform_bounds to fix #1411. - Add LERC compression to enums.Compr
Hi all, Rasterio 1.0.1 is on PyPI now. It fixes 4 bugs found since 1.0.0: - Bounding envelopes are densified at higher precision in transform_bounds to fix #1411. - Add LERC compression to enums.Compr
|
By
Sean Gillies
· #24
·
|
|
Mask to alpha band
Hi Denis, There's no way to do it in Rasterio without creating a new dataset and copying the band and mask arrays from the original.
Hi Denis, There's no way to do it in Rasterio without creating a new dataset and copying the band and mask arrays from the original.
|
By
Sean Gillies
· #25
·
|
|
`import rasterio` error on Win7 and Mac: ValueError: numpy.dtype has the wrong size, try recompiling
I am sorry, but upgrading numpy is the only way forward. If you don't want to overwrite your existing numpy installation, you have several options. I believe the following two are the best. Other grou
I am sorry, but upgrading numpy is the only way forward. If you don't want to overwrite your existing numpy installation, you have several options. I believe the following two are the best. Other grou
|
By
Sean Gillies
· #28
·
|
|
read masked and overviews when no-data value is defined
Hi Guy, A month ago we resolved an issue in Rasterio that has some commonalities with yours. There was a report that overviews were being missed when reading masked arrays and it turned out that the o
Hi Guy, A month ago we resolved an issue in Rasterio that has some commonalities with yours. There was a report that overviews were being missed when reading masked arrays and it turned out that the o
|
By
Sean Gillies
· #29
·
|
|
rio stack with compression
Hi Luke, I don't understand the issue entirely, but as Even Rouault explains in https://lists.osgeo.org/pipermail/gdal-dev/2015-June/041917.html a "naive" use of the write() method of a Rasterio datas
Hi Luke, I don't understand the issue entirely, but as Even Rouault explains in https://lists.osgeo.org/pipermail/gdal-dev/2015-June/041917.html a "naive" use of the write() method of a Rasterio datas
|
By
Sean Gillies
· #33
·
|
|
Rasterio 1.0.3
Hi all, Rasterio 1.0.3 is on PyPI now, finally. It fixes 2 bugs found since 1.0.2: - A regression in GeoJSON source handling in rio-rasterize (#1425) has been fixed. - Rasterization of linear rings (#
Hi all, Rasterio 1.0.3 is on PyPI now, finally. It fixes 2 bugs found since 1.0.2: - A regression in GeoJSON source handling in rio-rasterize (#1425) has been fixed. - Rasterization of linear rings (#
|
By
Sean Gillies
· #34
·
|
|
Rasterio 1.0.3.post1
Hi all, The 1.0.3 wheels I built for OSX and uploaded to PyPI included a GDAL library with no curl support. I've made a post-release that fixes this problem. If you installed one of these wheels, plea
Hi all, The 1.0.3 wheels I built for OSX and uploaded to PyPI included a GDAL library with no curl support. I've made a post-release that fixes this problem. If you installed one of these wheels, plea
|
By
Sean Gillies
· #35
·
|
|
Rasterio 1.0.3.post1
Thanks for the report, Denis. I had upgraded GDAL to 2.3.1 in these wheel builds, and was blaming my inability to access these jp2 files on a lack of credentials, but maybe something has changed betwe
Thanks for the report, Denis. I had upgraded GDAL to 2.3.1 in these wheel builds, and was blaming my inability to access these jp2 files on a lack of credentials, but maybe something has changed betwe
|
By
Sean Gillies
· #37
·
|
|
Rasterio 1.0.3.post1
Even, Thanks for the pointer! In configuring my GDAL 2.3.1 builds, pkg-config and openjpeg were found: (full logs here: https://travis-ci.org/sgillies/rasterio-wheels/jobs/425944166 https://api.travis
Even, Thanks for the pointer! In configuring my GDAL 2.3.1 builds, pkg-config and openjpeg were found: (full logs here: https://travis-ci.org/sgillies/rasterio-wheels/jobs/425944166 https://api.travis
|
By
Sean Gillies
· #43
·
|
|
Rasterio 1.0.3.post1
Hi Denis, I discovered that I had to patch GDAL 2.3.1 to build with OpenJPEG for the ancient manylinux1 platform. I've uploaded new wheels with a "-1" build tag to https://pypi.org/manage/project/rast
Hi Denis, I discovered that I had to patch GDAL 2.3.1 to build with OpenJPEG for the ancient manylinux1 platform. I've uploaded new wheels with a "-1" build tag to https://pypi.org/manage/project/rast
|
By
Sean Gillies
· #46
·
|
|
In-memory multi dataset object
Hi Guy, Rasterio doesn't have first-class support for VRTs. I'm not rushing to do it because there are some VRT features that I frankly think are nuts, like embedding Python code. However, we can use
Hi Guy, Rasterio doesn't have first-class support for VRTs. I'm not rushing to do it because there are some VRT features that I frankly think are nuts, like embedding Python code. However, we can use
|
By
Sean Gillies
· #50
·
|