rio-toa
rio-toa copied to clipboard
Top Of Atmosphere (TOA) calculations for Landsat 8
First, thank you very much for the great tool set! I'm using it for processing Landsat 5 L1 products, which works quite well as I can tell: $ rio toa...
Package can read parameters from MTL files with the 'LANDSAT_METADATA_FILE' group. It is related to the Issue: https://github.com/mapbox/rio-toa/issues/35 Tests are passing and now it is possible to read MTL files...
The new landsat collections naming scheme needs a different `--readtemplate` ``` --readtemplate 'LC08.*\_B{b}.TIF' ``` May consider making ^ the default soon.
I've been trying to run rio toa reflectance on LC82150342018182LGN00 but i got the following problems: 1 - lines 158 and 159 on reflectance.py - the list coming in 'bands'...
Hi guys, I am getting this error from a couple of 2014 Landsat8 images. I installed rio-toa using pip and github but nothing works. Any advice? Thanks in advance, JL...
`reflectance` takes a list of sources as input: https://github.com/mapbox/rio-toa/blob/0a40beb1bd3c05c76c65f2f20951591d831ad5ea/rio_toa/reflectance.py#L131-L137 while `radiance` takes just one and expects that it contains multiple bands: https://github.com/mapbox/rio-toa/blob/0a40beb1bd3c05c76c65f2f20951591d831ad5ea/rio_toa/radiance.py#L64-L70 Why the difference? It should be easy to...
With support for recording per-band units and descriptions in Rasterio (see https://github.com/mapbox/rasterio/pull/854) we should record the units for the outputs. ex: ``` with rasterio.open(output, 'w', **profile) as dst: dst.set_units('K') ```
Found this when testing the MTL txt to json parser: For `LC80010052015067LGN00` : JSON: ``` "IMAGE_ATTRIBUTES": { "EARTH_SUN_DISTANCE": 0.9925447, "CLOUD_COVER": 16.14, "IMAGE_QUALITY_TIRS": 9, "SUN_AZIMUTH": -171.13059484, "SUN_ELEVATION": 8.01334586, "ROLL_ANGLE": -0.001, "IMAGE_QUALITY_OLI":...