|
exporting single banc with a colormap to RGB.tif 2 messages
Hello, I could not figure out how to export a single band with a colormap as an RGB.tif A snippet of my code: with rasterio.open(new_f_cmp,'w',**raster_cmp_p) as dst: dst.write(file_np_man_cs_int8.dat
Hello, I could not figure out how to export a single band with a colormap as an RGB.tif A snippet of my code: with rasterio.open(new_f_cmp,'w',**raster_cmp_p) as dst: dst.write(file_np_man_cs_int8.dat
|
By Eyal Saiet
·
|
|
rasterio vsicurl issues with docker-compose 7 messages
I am having a strange rasterio issue where if I build rasterio docker image from osgeo/gdal:ubuntu-small-latest as the base image and run it as docker-compose up, the rio fails to open any http based
I am having a strange rasterio issue where if I build rasterio docker image from osgeo/gdal:ubuntu-small-latest as the base image and run it as docker-compose up, the rio fails to open any http based
|
By Madhav Desetty
·
|
|
Including PROJ datum grids in rasterio wheels, yes or no?
Hi all, I have built new wheels for rasterio 1.1.1 here https://travis-ci.com/rasterio/rasterio-wheels/builds/139810607 which, for the first time, contain the base PROJ datum grids (version 1.8). This
Hi all, I have built new wheels for rasterio 1.1.1 here https://travis-ci.com/rasterio/rasterio-wheels/builds/139810607 which, for the first time, contain the base PROJ datum grids (version 1.8). This
|
By Sean Gillies
·
|
|
New cp38 wheels for rasterio 1.1.1
Hi all, Manylinux1 and macosx wheels for Python 3.8 (tagged cp38) are on PyPI alongside the wheels for versions 3.7 and earlier that we uploaded on 2019-11-04. I hope you find them useful! -- Sean Gil
Hi all, Manylinux1 and macosx wheels for Python 3.8 (tagged cp38) are on PyPI alongside the wheels for versions 3.7 and earlier that we uploaded on 2019-11-04. I hope you find them useful! -- Sean Gil
|
By Sean Gillies
·
|
|
rio-hist 1.0.0
Hi all, Version 1.0.0 for rio-hist is on PyPI now. Note that there is no wheel for Python 2.7. I expect the package to work with 2.7, and the sdist will serve, but the project doesn't officially suppo
Hi all, Version 1.0.0 for rio-hist is on PyPI now. Note that there is no wheel for Python 2.7. I expect the package to work with 2.7, and the sdist will serve, but the project doesn't officially suppo
|
By Sean Gillies
·
|
|
rio-hist 1.0b1 release 3 messages
Hi all, I realized today that the rio-hist CLI plugin was nearly derelict. It didn't work with rasterio versions ~= 1.0 and hadn't been built in a long time. I gave it an overhaul, put a 1.0b1 release
Hi all, I realized today that the rio-hist CLI plugin was nearly derelict. It didn't work with rasterio versions ~= 1.0 and hadn't been built in a long time. I gave it an overhaul, put a 1.0b1 release
|
By Sean Gillies
·
|
|
problems installing GDAL and Rasterio in virtual environment in Windows 2 messages
Hello, I was successful in installing GDAL and Rasterio in my Windows10 machine using pip. But for some reason, I am failing to do so in the virtual environment, getting the limited error message in r
Hello, I was successful in installing GDAL and Rasterio in my Windows10 machine using pip. But for some reason, I am failing to do so in the virtual environment, getting the limited error message in r
|
By Eyal Saiet
·
|
|
Representing many raster files as one big file 3 messages
Hi all, I'm new to rasterio and it's so far working very nicely for reading some GeoTIFF files (specifically, the EU DEM elevation data set). I have a question I hope someone can answer: it's about wh
Hi all, I'm new to rasterio and it's so far working very nicely for reading some GeoTIFF files (specifically, the EU DEM elevation data set). I have a question I hope someone can answer: it's about wh
|
By
rasterio@...
·
|
|
Problem with AAIGrid overwrite 5 messages
Dear All, For one project I am reading and writing these test raster datasets as ASCII grids. I have found that overwriting these grids is impossible and I get the following error: ERROR 1: Deleting t
Dear All, For one project I am reading and writing these test raster datasets as ASCII grids. I have found that overwriting these grids is impossible and I get the following error: ERROR 1: Deleting t
|
By
Amine Aboufirass
·
|
|
Geodatabase, FileGeodatabase, and Esri Geodatabase 3 messages
Hi everyone, After relying on GIS softwares for a long time with a bit of python help with rasterio, I decided to move on using rasterio (and geopandas) for AI applications. I would like to have acces
Hi everyone, After relying on GIS softwares for a long time with a bit of python help with rasterio, I decided to move on using rasterio (and geopandas) for AI applications. I would like to have acces
|
By Armstrong Manuvakola Ezequias Ngolo
·
|
|
metadata and profile: What's the difference? 3 messages
Also, what is the difference between a dataset's metadata and profile? I have the impression one of these values is redundant. Please see example below: >>> dataset.profile {'driver': 'AAIGrid', 'dtyp
Also, what is the difference between a dataset's metadata and profile? I have the impression one of these values is redundant. Please see example below: >>> dataset.profile {'driver': 'AAIGrid', 'dtyp
|
By
Amine Aboufirass
·
|
|
reading raster with masked=True leads to error 3 messages
Hello, I wanted to try using read(1,masked=True) on an imported DEM, but I get the following error below: Since I could not verify what arguments the read() method accepts, I am asking here. thanks --
Hello, I wanted to try using read(1,masked=True) on an imported DEM, but I get the following error below: Since I could not verify what arguments the read() method accepts, I am asking here. thanks --
|
By Eyal Saiet
·
|
|
Rasterio 1.1.1
Hi all, Rasterio 1.1.1 source distribution and wheels for macosx and manylinux1 are on PyPI now. Here are the changes from the change log: Bug fixes: - Calling a dataset's sample method with coordinat
Hi all, Rasterio 1.1.1 source distribution and wheels for macosx and manylinux1 are on PyPI now. Here are the changes from the change log: Bug fixes: - Calling a dataset's sample method with coordinat
|
By Sean Gillies
·
|
|
reproject from a tiff to another tiff gives "destination band 1 appears to be read only" 2 messages
Please can someone explain how I align a tiff file of lights with another of population to create two numpy arrays the same size and aligned. I tried: population = rio.open(population) lights = rio.op
Please can someone explain how I align a tiff file of lights with another of population to create two numpy arrays the same size and aligned. I tried: population = rio.open(population) lights = rio.op
|
By simonm3@...
·
|
|
DataReader.crs is empty with new environment? 3 messages
Hi --- I just got a new (Windows 10) laptop, and recreated my software environment from my old laptop. Code that had previously worked didn't. In particular, on opening a file, I find the crs field is
Hi --- I just got a new (Windows 10) laptop, and recreated my software environment from my old laptop. Code that had previously worked didn't. In particular, on opening a file, I find the crs field is
|
By Denise Draper
·
|
|
setting BIGTIFF='IF_SAFER' not solving BigTiff problems 2 messages
Dear All, I would like to point to this issue in which I brought up the BIGTIFF limitation with regards to merging rasters using rasterio: https://github.com/mapbox/rasterio/issues/1796 It turns out t
Dear All, I would like to point to this issue in which I brought up the BIGTIFF limitation with regards to merging rasters using rasterio: https://github.com/mapbox/rasterio/issues/1796 It turns out t
|
By
Amine Aboufirass
·
|
|
Clarification on rio bounds --sequence/--collection 2 messages
Hi, In the usage description of `rio bounds --help` ``` ... --sequence / --collection Write a LF-delimited sequence of texts containing individual objects (the default) or write a single JSON text con
Hi, In the usage description of `rio bounds --help` ``` ... --sequence / --collection Write a LF-delimited sequence of texts containing individual objects (the default) or write a single JSON text con
|
By Yann-Sebastien Tremblay-Johnston
·
|
|
masking using another raster 2 messages
Hi all, Simple question, but I want to make sure I'm doing this the canonical way. Assume two single-band rasters with identical projections/transforms and one of the rasters has NODATA pixels definin
Hi all, Simple question, but I want to make sure I'm doing this the canonical way. Assume two single-band rasters with identical projections/transforms and one of the rasters has NODATA pixels definin
|
By Gregory, Matthew
·
|
|
reading hdf4 files with rasterio 2 messages
Dear All, Is there a way to read and write hdf4 datasets using rasterio? I am working with DAAC data, for example https://e4ftl01.cr.usgs.gov//DP107/MOLA/MYD13Q1.006/2013.01.09/MYD13Q1.A2013009.h09v07
Dear All, Is there a way to read and write hdf4 datasets using rasterio? I am working with DAAC data, for example https://e4ftl01.cr.usgs.gov//DP107/MOLA/MYD13Q1.006/2013.01.09/MYD13Q1.A2013009.h09v07
|
By
Amine Aboufirass
·
|
|
Occasional "not recognized as a supported file format" errors when reading from S3 10 messages
Dear rasterio group, (I initially posted this at https://github.com/mapbox/rasterio/issues/1686 ) Lately, we have encountered a strange bug in Terracotta. It basically always leads to errors like thes
Dear rasterio group, (I initially posted this at https://github.com/mapbox/rasterio/issues/1686 ) Lately, we have encountered a strange bug in Terracotta. It basically always leads to errors like thes
|
By
Dion Häfner
·
|