You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have been getting errors with a lot of locations for getting 10m 3dep-seamless data. For example, if you run the following code, you get a 0B array with the size of time: 0 band: 0 y: 17420 x: 20754. But when downloading the asset, all look good in QGIS.
I started to compare the STAC item of successful locations with the ones failing .... I found that the only difference is the resolutions...the ones succeed has a resolution of (9.2592593e-05, -9.2592593e-05) and the ones failing have a resolution of (1e-05, -1e-05). I also downloaded the asset and check out in QGIS and found the (9.2592593e-05, -9.2592593e-05) resolution is the correct one. For now, I manually change the STAC item to fix this issue:
I have been getting errors with a lot of locations for getting 10m 3dep-seamless data. For example, if you run the following code, you get a 0B array with the size of
time: 0 band: 0 y: 17420 x: 20754
. But when downloading the asset, all look good in QGIS.I started to compare the STAC item of successful locations with the ones failing .... I found that the only difference is the resolutions...the ones succeed has a resolution of (9.2592593e-05, -9.2592593e-05) and the ones failing have a resolution of (1e-05, -1e-05). I also downloaded the asset and check out in QGIS and found the (9.2592593e-05, -9.2592593e-05) resolution is the correct one. For now, I manually change the STAC item to fix this issue:
items[0].properties['proj:transform'][0] =9.2592593e-05
items[0].properties['proj:transform'][4] =-9.2592593e-05
The text was updated successfully, but these errors were encountered: