|
Re: Reading from S3
Hi,
I will add to the previous message that if you want to specify a non-default region, the environment variable you're looking for is probably AWS_REGION (or AWS_DEFAULT_REGION starting with GDAL
Hi,
I will add to the previous message that if you want to specify a non-default region, the environment variable you're looking for is probably AWS_REGION (or AWS_DEFAULT_REGION starting with GDAL
|
By
Guillaume Lostis <g.lostis@...>
·
#299
·
|
|
Re: Reading from S3
Hi,
The following log message catches my eye:
env: AWS_S3_ENDPOINT="us-west-1"
If that is set in your notebook's environment, it will override the value you pass to Env() in your program, and it looks
Hi,
The following log message catches my eye:
env: AWS_S3_ENDPOINT="us-west-1"
If that is set in your notebook's environment, it will override the value you pass to Env() in your program, and it looks
|
By
Sean Gillies
·
#298
·
|
|
Re: Reading from S3
I am trying to read a GeoTIFF from a private AWS S3 bucket. I have configured GDAL and the appropriate files ~/.aws/config and ~/.aws/credentials. I am using a non-standard AWS region as well, so I
I am trying to read a GeoTIFF from a private AWS S3 bucket. I have configured GDAL and the appropriate files ~/.aws/config and ~/.aws/credentials. I am using a non-standard AWS region as well, so I
|
By
hughes.lloyd@...
·
#297
·
|
|
Reading from S3
I am trying to read a geoTiff from my private S3 bucket (mapping), but am receiving the following error message
The code I am using to open the GeoTiff is:
with
I am trying to read a geoTiff from my private S3 bucket (mapping), but am receiving the following error message
The code I am using to open the GeoTiff is:
with
|
By
hughes.lloyd@...
·
#296
·
|
|
Re: rasterio.windows.transform seems to not scale my windows correctly, am I using it wrong?
Hi Ryan,
I've been on vacation, just now getting the time to answer questions. Answers below.
Your use of windows.transform in the first case is correct, and your use of windows.bounds in the second
Hi Ryan,
I've been on vacation, just now getting the time to answer questions. Answers below.
Your use of windows.transform in the first case is correct, and your use of windows.bounds in the second
|
By
Sean Gillies
·
#295
·
|
|
Re: multi-dimensional support
Hi Norman, Howard,
I'm going to move this discussion over to https://rasterio.groups.io/g/dev/messages and continue there.
--
Sean Gillies
Hi Norman, Howard,
I'm going to move this discussion over to https://rasterio.groups.io/g/dev/messages and continue there.
--
Sean Gillies
|
By
Sean Gillies
·
#294
·
|
|
Rasterio 1.0.26
Hi all,
Rasterio 1.0.26 wheels and source distribution are on PyPI today. There are eight bug fixes in this release.
https://github.com/mapbox/rasterio/blob/master/CHANGES.txt#L4
Thank you for the
Hi all,
Rasterio 1.0.26 wheels and source distribution are on PyPI today. There are eight bug fixes in this release.
https://github.com/mapbox/rasterio/blob/master/CHANGES.txt#L4
Thank you for the
|
By
Sean Gillies
·
#293
·
|
|
Re: multi-dimensional support
I was one of the stakeholders for subdataset support in GDAL with netCDF and it worked well with what we were trying to achieve back then, serving regularly gridded time series netcdf data through a
I was one of the stakeholders for subdataset support in GDAL with netCDF and it worked well with what we were trying to achieve back then, serving regularly gridded time series netcdf data through a
|
By
Norman Barker
·
#292
·
|
|
Re: multi-dimensional support
Most folks are ambivalent about multi-dimensional support in GDAL, and they were ambivalent about subdatasets before that (which were a deficient implementation in a number of ways which precipitated
Most folks are ambivalent about multi-dimensional support in GDAL, and they were ambivalent about subdatasets before that (which were a deficient implementation in a number of ways which precipitated
|
By
Howard Butler
·
#291
·
|
|
Re: multi-dimensional support
Hi Norman,
I would need to see a strawman proposal of how rasterio's dataset open/read/write API would be extended before I could support the work.
I'm also a bit concerned about the small number of
Hi Norman,
I would need to see a strawman proposal of how rasterio's dataset open/read/write API would be extended before I could support the work.
I'm also a bit concerned about the small number of
|
By
Sean Gillies
·
#290
·
|
|
Re: multi-dimensional support
I think this would be quite useful.
i made a start at it using subdatasets in rioxarray here: https://github.com/corteva/rioxarray/pull/33
But, it is missing 1 dimensional variables such as time at
I think this would be quite useful.
i made a start at it using subdatasets in rioxarray here: https://github.com/corteva/rioxarray/pull/33
But, it is missing 1 dimensional variables such as time at
|
By
Alan Snow
·
#289
·
|
|
multi-dimensional support
Hi,
I started discussing support for multiple dimensions in https://github.com/mapbox/rasterio/issues/1759 but am moving this to a wider audience.
GDAL has added an implementation of
Hi,
I started discussing support for multiple dimensions in https://github.com/mapbox/rasterio/issues/1759 but am moving this to a wider audience.
GDAL has added an implementation of
|
By
Norman Barker
·
#288
·
|
|
rasterio.windows.transform seems to not scale my windows correctly, am I using it wrong?
I have a landsat band that I have windowed so that I now have about 200 512x512 windows in a list called chip_list_full. I have plotted these on top of my aoi to confirm that the windowing worked and
I have a landsat band that I have windowed so that I now have about 200 512x512 windows in a list called chip_list_full. I have plotted these on top of my aoi to confirm that the windowing worked and
|
By
Ryan Avery
·
#287
·
|
|
Re: Geotiff max/min coordinates question
Couldn't you use the .bounds method on your dataset reader object?
Couldn't you use the .bounds method on your dataset reader object?
|
By
Amine Aboufirass <amine.aboufirass@...>
·
#286
·
|
|
Re: Geotiff max/min coordinates question
I am not entirely sure what you are referring to, but I am assuming you want the bounds of the raster in lat/lon?
If so, then `EPSG:4326` is a pretty standard projection for lat/lon coordinates.
So,
I am not entirely sure what you are referring to, but I am assuming you want the bounds of the raster in lat/lon?
If so, then `EPSG:4326` is a pretty standard projection for lat/lon coordinates.
So,
|
By
Alan Snow
·
#285
·
|
|
Geotiff max/min coordinates question
Hi everyone,
I am very new to rasterio and gis in general. I really like the rasterio library so far but had a question on how it works similar to a gdal function. I am trying to get the max/min
Hi everyone,
I am very new to rasterio and gis in general. I really like the rasterio library so far but had a question on how it works similar to a gdal function. I am trying to get the max/min
|
By
j.carnes2553@...
·
#284
·
|
|
Re: [feature] List tags namespaces
Great, thank you very much Vincent!
Guillaume Lostis
Great, thank you very much Vincent!
Guillaume Lostis
|
By
Guillaume Lostis <g.lostis@...>
·
#283
·
|
|
Re: [feature] List tags namespaces
I started a PR over https://github.com/mapbox/rasterio/pull/1740
I started a PR over https://github.com/mapbox/rasterio/pull/1740
|
By
vincent.sarago@...
·
#282
·
|
|
Re: [feature] List tags namespaces
Hi Guillaume,
I'm + 1 with the idea of adding this feature.
I've had the same challenge while working on rio-cogeo, if there is a GDAL API I think it could be useful to add a method in
Hi Guillaume,
I'm + 1 with the idea of adding this feature.
I've had the same challenge while working on rio-cogeo, if there is a GDAL API I think it could be useful to add a method in
|
By
vincent.sarago@...
·
#281
·
|
|
[feature] List tags namespaces
Hi all,
I would like to be able to list a file's namespaces for tags. I am handling files with several tag "namespaces" (default, IMAGE_STRUCTURE, and RPC for example). I want to create a "copy" of
Hi all,
I would like to be able to list a file's namespaces for tags. I am handling files with several tag "namespaces" (default, IMAGE_STRUCTURE, and RPC for example). I want to create a "copy" of
|
By
Guillaume Lostis <g.lostis@...>
·
#280
·
|