ONNX 模型库
返回模型

说明文档

SUPERIX:超分辨率对比实验

简介

超分辨率(SR)技术在提升免费卫星影像(如Sentinel-2和Landsat)的空间分辨率方面正变得越来越受欢迎。SR可以显著提高各种遥感下游任务的准确性,包括道路检测、作物勾绘和目标识别。然而,一些研究人员认为SR的好处主要是美观性的,暗示其主要价值在于创建更具视觉吸引力的地图或辅助视觉解译。

对SR的另一个批评是它可能会降低原始输入数据的质量,可能导致错误的结论。然而,一些SR方法在保持反射率完整性方面似乎比其他方法更加保守。鉴于此,一个可靠的基准对于提供对当前最先进技术的定量评估至关重要。如果没有这样的基准,仍然很难确定地判断SR技术对遥感数据的真正影响。

为了建立一个可靠的框架,我们提议创建一个专门的工作组,旨在对Sentinel-2数据的超分辨率算法进行对比(SUPERIX)。我们鼓励来自大学、研究中心、工业界和航天机构团队开发的SR算法参与SUPERIX。该计划将使用OpenSR-test数据集和提出的指标来评估与原始输入数据的一致性以及SR模型引入的高频细节的可靠性。

总之,已经开发了多种方法来解决卫星影像中的超分辨率问题,但很少有研究对该领域最先进的方法进行定量对比。

  • SUPERIX旨在对比ESA Sentinel-2任务的SR算法。
  • SUPERIX将涉及定义参考数据集、指标和分析框架。
  • SUPERIX应该能够识别现有算法的优势和劣势以及潜在的改进领域。

团队和SR算法

您感兴趣吗?请联系我们!

验证数据集

准确的验证数据集将允许对SR的优势和劣势进行详细分析。

验证数据集可能在采样和生成方式上有所不同:

  • 跨传感器或合成
  • 空间尺度因子
  • 地理分布

SR算法的性能也会因参考数据集而异,这可归因于辐射测量、光谱响应、空间对齐、有效空间分辨率、所考虑的景观等方面的差异。

关于高分辨率(HR)参考,我们正在考虑:

  • naip: 一组62张主要来自美国农业和森林地区的RGBNIR正射影像。
  • spot: 一组从Worldstrat获得的10张SPOT图像。
  • spain_urban: 一组20张RGBNIR正射影像,主要来自西班牙的城市区域,包括道路。
  • spain_crops: 一组20张RGBNIR正射影像,主要来自西班牙城市附近的农业区域。
  • venus: 一组从SEN2VENµS获得的60张VENµS图像。

每个HR参考都包括预处理为1C和2A级别的相应Sentinel-2影像。以下是如何加载每个数据集的示例。

import opensr_test

dataset = opensr_test.load("naip")
lr, hr = dataset["L2A"], dataset["HRharm"]

质量指标

我们提出以下指标来评估SR模型的一致性:

  • 反射率: 该指标评估SR如何影响LR图像的反射率,默认使用平均绝对误差(MAE)距离。较低的值表示更好的反射率一致性。SR图像使用三角形抗混叠滤波器按尺度因子下采样(双线性插样)降采样到LR分辨率。

  • 光谱: 该指标测量SR如何影响LR图像的光谱特征,默认使用光谱角度距离(SAM)。较低的值表示更好的光谱一致性,角度以度为单位测量。SR图像使用三角形抗混叠滤波器按尺度因子下采样(双线性插值)降采样到LR分辨率。

  • 空间: 该指标评估SR和LR图像之间的空间对齐,默认使用相位相关系数(PCC)。一些SR模型会引入空间偏移,该指标可以检测到这些偏移。SR图像使用三角形抗混叠滤波器按尺度因子下采样(双线性插值)降采样到LR分辨率。

我们提出三个指标来评估SR模型引入的高频细节。这些指标的总和始终等于1:

  • 改进(im_score): 该指标量化SR和HR图像之间的相似性。值越接近1表示SR模型与HR图像密切对应(即改善了高频细节)。

  • 遗漏(om_score): 该指标测量SR和LR图像之间的相似性。值越接近1表明SR模型与使用双线性插值下采样的LR图像密切比较(即遗漏了HR中存在但LR中不存在的高频细节)。

  • 幻觉(ha_score): 该指标评估SR与HR和LR图像之间的相似性。值越接近1表示SR模型与两个参考都有显著偏差(即幻觉引入了HR中不存在的高频细节)。

拟议实验

我们计划为x4和x2尺度因子进行两个实验。鼓励参与者提交两种尺度的SR模型。此外,仅为x4尺度设计的模型将通过将SR图像下采样2倍来在x2尺度下进行评估。

在每个实验中,我们将采用两种不同的方法来评估SR模型引入的高频细节。第一种方法使用平均绝对误差(MAE)作为评估高频细节的距离度量。或者,第二种方法使用LPIPS。虽然MAE对高频细节的强度敏感,但LPIPS对其结构差异更敏感。对比这两个指标的结果可以全面理解SR模型引入的高频细节。LPIPS指标始终在HR图像的32x32块上运行,而MAE在x2尺度评估的2x2块和x4尺度评估的4x4块上计算。

拟议协议

  • SUPERIX工作组应首先就适合SR的验证数据集、最佳质量指标的定义以及如何量化幻觉达成一致。

  • 每个团队将在截止日期前提交其SR模型。

  • 我们将有两种不同类型的模型:开源闭源。 要被视为开源,代码必须在此存储库中以模型名称命名的文件夹中提供。 保持代码尽可能简单。请参阅使用torch、diffuser和tensorflow库的示例这里这里这里。 闭源模型要求仅以GeoTIFF格式提供结果。请参阅示例这里

  • 提交将通过对此存储库的拉取请求进行。拉取请求必须包含metadata.json文件和GeoTIFF格式的结果。结果必须与HR图像具有相同的分辨率。 我们期望metadata.json文件中包含以下信息:

{
  "name": "model_name",
  "authors": ["author1", "author2"],
  "affiliations": ["affiliation1", "affiliation2"],
  "description": "A brief description of the model",
  "code": "open-source" or "closed-source",
  "scale": "x2" or "x4",
  "url": "[OPTIONAL] URL to the model repository if it is open-source",
  "license": "license of the model"
}
  • SUPERIX工作组将在截止日期后使用上述讨论的指标评估SR模型。

  • 在指标估算之后,我们将首先独立联系提供结果的团队。如果提交存在任何问题,我们将要求澄清,团队将有两周的时间提供必要的更正。

  • 问题和讨论将在本存储库的讨论部分进行。 SUPERIX工作组的进展将通过讨论部分和电子邮件通知。

  • 在所有参与者提供必要的更正后,结果将在本存储库的讨论部分发布。

预期成果

  • 预计没有任何方法在所有指标上都具有明显的优势。

  • 将对算法之间存在重大差异的验证场景进行分析。

  • 将准备一个专门的网站和技术报告来展示结果和建议。

  • 将向遥感期刊提交研究论文。

  • 论文将在overleaf中准备,所有参与者将被邀请为其做出贡献。

isp-uv-es/superIX

作者 isp-uv-es

image-to-image tf-keras
↓ 0 ♥ 9

创建时间: 2024-05-19 09:20:12+00:00

更新时间: 2024-05-28 07:31:00+00:00

在 Hugging Face 上查看

文件 (2887)

.gitattributes
.gitignore
README.md
benchmark.py
evoland/evoland.zip
evoland/results/SR/naip/geotiff/HR__ROI_00006__m_4411338_ne_12_060_20210917.tif
evoland/results/SR/naip/geotiff/HR__ROI_00270__m_3809943_sw_14_060_20210909.tif
evoland/results/SR/naip/geotiff/HR__ROI_00319__m_3609931_se_14_060_20190627.tif
evoland/results/SR/naip/geotiff/HR__ROI_00399__m_3809910_sw_14_060_20210909.tif
evoland/results/SR/naip/geotiff/HR__ROI_00438__m_3409938_ne_14_060_20210919.tif
evoland/results/SR/naip/geotiff/HR__ROI_00456__m_3510353_sw_13_060_20200521.tif
evoland/results/SR/naip/geotiff/HR__ROI_00565__m_3410123_se_14_060_20200828.tif
evoland/results/SR/naip/geotiff/HR__ROI_01566__m_3211262_nw_12_060_20211113.tif
evoland/results/SR/naip/geotiff/HR__ROI_01619__m_4211110_ne_12_060_20190926.tif
evoland/results/SR/naip/geotiff/HR__ROI_01750__m_4011251_se_12_060_20210925.tif
evoland/results/SR/naip/geotiff/HR__ROI_02524__m_2709848_sw_14_060_20200501.tif
evoland/results/SR/naip/geotiff/HR__ROI_02604__m_4110621_sw_13_060_20190711.tif
evoland/results/SR/naip/geotiff/HR__ROI_03017__m_3410355_se_13_060_20200521.tif
evoland/results/SR/naip/geotiff/HR__ROI_03107__m_3809920_sw_14_060_20210909.tif
evoland/results/SR/naip/geotiff/HR__ROI_03117__m_4110739_sw_13_060_20190711.tif
evoland/results/SR/naip/geotiff/HR__ROI_03127__m_3211246_nw_12_060_20211113.tif
evoland/results/SR/naip/geotiff/HR__ROI_03578__m_3609959_nw_14_060_20210919.tif
evoland/results/SR/naip/geotiff/HR__ROI_03696__m_3809959_nw_14_060_20210909.tif
evoland/results/SR/naip/geotiff/HR__ROI_03715__m_2910329_sw_13_060_20201008.tif
evoland/results/SR/naip/geotiff/HR__ROI_03961__m_3210835_se_12_060_20200517.tif
evoland/results/SR/naip/geotiff/HR__ROI_04886__m_3509819_nw_14_060_20210906.tif
evoland/results/SR/naip/geotiff/HR__ROI_05095__m_4410348_nw_13_060_20211005.tif
evoland/results/SR/naip/geotiff/HR__ROI_05262__m_3410713_nw_13_060_20200516.tif
evoland/results/SR/naip/geotiff/HR__ROI_05509__m_3311331_sw_12_060_20211204.tif
evoland/results/SR/naip/geotiff/HR__ROI_05609__m_3809944_se_14_060_20210909.tif
evoland/results/SR/naip/geotiff/HR__ROI_05839__m_3709911_sw_14_060_20190712.tif
evoland/results/SR/naip/geotiff/HR__ROI_06305__m_4511313_se_12_060_20211002.tif
evoland/results/SR/naip/geotiff/HR__ROI_06588__m_3410304_nw_13_060_20200521.tif
evoland/results/SR/naip/geotiff/HR__ROI_06795__m_2910038_sw_14_060_20201011.tif
evoland/results/SR/naip/geotiff/HR__ROI_06937__m_4509541_ne_15_060_20190808.tif
evoland/results/SR/naip/geotiff/HR__ROI_07145__m_3410332_nw_13_060_20200521.tif
evoland/results/SR/naip/geotiff/HR__ROI_07401__m_4110136_sw_14_060_20200729.tif
evoland/results/SR/naip/geotiff/HR__ROI_07911__m_3210860_se_12_060_20200517.tif
evoland/results/SR/naip/geotiff/HR__ROI_08114__m_3809933_sw_14_060_20210909.tif
evoland/results/SR/naip/geotiff/HR__ROI_08463__m_3809960_ne_14_060_20210909.tif
evoland/results/SR/naip/geotiff/HR__ROI_08631__m_3409947_nw_14_060_20210919.tif
evoland/results/SR/naip/geotiff/HR__ROI_08872__m_4210422_sw_13_060_20190711.tif
evoland/results/SR/naip/geotiff/HR__ROI_08930__m_3410719_se_13_060_20200516.tif
evoland/results/SR/naip/geotiff/HR__ROI_09164__m_3210836_ne_12_060_20200517.tif
evoland/results/SR/naip/geotiff/HR__ROI_09337__m_4609958_nw_14_060_20200818.tif
evoland/results/SR/naip/geotiff/HR__ROI_09518__m_4309958_nw_14_060_20210917.tif
evoland/results/SR/naip/geotiff/HR__ROI_10317__m_3211226_se_12_060_20211113.tif
evoland/results/SR/naip/geotiff/HR__ROI_10611__m_4411335_sw_12_060_20210925.tif
evoland/results/SR/naip/geotiff/HR__ROI_10807__m_4012212_nw_10_060_20200713.tif
evoland/results/SR/naip/geotiff/HR__ROI_10848__m_4310032_se_14_060_20210917.tif
evoland/results/SR/naip/geotiff/HR__ROI_10903__m_4809957_sw_14_060_20190715.tif
evoland/results/SR/naip/geotiff/HR__ROI_11195__m_4210611_se_13_060_20190711.tif
evoland/results/SR/naip/geotiff/HR__ROI_11495__m_4210652_ne_13_060_20190711.tif
evoland/results/SR/naip/geotiff/HR__ROI_11533__m_3709838_ne_14_060_20190712.tif
evoland/results/SR/naip/geotiff/HR__ROI_11628__m_3410947_ne_12_060_20211115.tif
evoland/results/SR/naip/geotiff/HR__ROI_11746__m_4610048_sw_14_060_20200818.tif
evoland/results/SR/naip/geotiff/HR__ROI_12264__m_4211664_ne_11_060_20190714.tif
evoland/results/SR/naip/geotiff/HR__ROI_12389__m_3409511_sw_15_060_20210923.tif
evoland/results/SR/naip/geotiff/HR__ROI_12628__m_4109961_nw_14_060_20200808.tif
evoland/results/SR/naip/geotiff/HR__ROI_13050__m_3210044_sw_14_060_20200925.tif
evoland/results/SR/naip/geotiff/HR__ROI_13075__m_3411354_sw_12_060_20211204.tif
evoland/results/SR/naip/geotiff/HR__ROI_13496__m_4809741_ne_14_060_20210928.tif
evoland/results/SR/naip/geotiff/HR__ROI_13498__m_2910331_nw_13_060_20201007.tif
evoland/results/SR/naip/geotiff/HR__ROI_13507__m_4311655_ne_11_060_20190714.tif
evoland/results/SR/naip/geotiff/HR__ROI_13526__m_2809723_nw_14_060_20200501.tif
evoland/results/SR/naip/geotiff/HR__ROI_13742__m_2910315_nw_13_060_20201007.tif
evoland/results/SR/naip/geotiff/HR__ROI_13889__m_3110514_sw_13_060_20201011.tif
evoland/results/SR/naip/png/HR__ROI_00006__m_4411338_ne_12_060_20210917.png
evoland/results/SR/naip/png/HR__ROI_00270__m_3809943_sw_14_060_20210909.png
evoland/results/SR/naip/png/HR__ROI_00319__m_3609931_se_14_060_20190627.png
evoland/results/SR/naip/png/HR__ROI_00399__m_3809910_sw_14_060_20210909.png
evoland/results/SR/naip/png/HR__ROI_00438__m_3409938_ne_14_060_20210919.png
evoland/results/SR/naip/png/HR__ROI_00456__m_3510353_sw_13_060_20200521.png
evoland/results/SR/naip/png/HR__ROI_00565__m_3410123_se_14_060_20200828.png
evoland/results/SR/naip/png/HR__ROI_01566__m_3211262_nw_12_060_20211113.png
evoland/results/SR/naip/png/HR__ROI_01619__m_4211110_ne_12_060_20190926.png
evoland/results/SR/naip/png/HR__ROI_01750__m_4011251_se_12_060_20210925.png
evoland/results/SR/naip/png/HR__ROI_02524__m_2709848_sw_14_060_20200501.png
evoland/results/SR/naip/png/HR__ROI_02604__m_4110621_sw_13_060_20190711.png
evoland/results/SR/naip/png/HR__ROI_03017__m_3410355_se_13_060_20200521.png
evoland/results/SR/naip/png/HR__ROI_03107__m_3809920_sw_14_060_20210909.png
evoland/results/SR/naip/png/HR__ROI_03117__m_4110739_sw_13_060_20190711.png
evoland/results/SR/naip/png/HR__ROI_03127__m_3211246_nw_12_060_20211113.png
evoland/results/SR/naip/png/HR__ROI_03578__m_3609959_nw_14_060_20210919.png
evoland/results/SR/naip/png/HR__ROI_03696__m_3809959_nw_14_060_20210909.png
evoland/results/SR/naip/png/HR__ROI_03715__m_2910329_sw_13_060_20201008.png
evoland/results/SR/naip/png/HR__ROI_03961__m_3210835_se_12_060_20200517.png
evoland/results/SR/naip/png/HR__ROI_04886__m_3509819_nw_14_060_20210906.png
evoland/results/SR/naip/png/HR__ROI_05095__m_4410348_nw_13_060_20211005.png
evoland/results/SR/naip/png/HR__ROI_05262__m_3410713_nw_13_060_20200516.png
evoland/results/SR/naip/png/HR__ROI_05509__m_3311331_sw_12_060_20211204.png
evoland/results/SR/naip/png/HR__ROI_05609__m_3809944_se_14_060_20210909.png
evoland/results/SR/naip/png/HR__ROI_05839__m_3709911_sw_14_060_20190712.png
evoland/results/SR/naip/png/HR__ROI_06305__m_4511313_se_12_060_20211002.png
evoland/results/SR/naip/png/HR__ROI_06588__m_3410304_nw_13_060_20200521.png
evoland/results/SR/naip/png/HR__ROI_06795__m_2910038_sw_14_060_20201011.png
evoland/results/SR/naip/png/HR__ROI_06937__m_4509541_ne_15_060_20190808.png
evoland/results/SR/naip/png/HR__ROI_07145__m_3410332_nw_13_060_20200521.png
evoland/results/SR/naip/png/HR__ROI_07401__m_4110136_sw_14_060_20200729.png
evoland/results/SR/naip/png/HR__ROI_07911__m_3210860_se_12_060_20200517.png
evoland/results/SR/naip/png/HR__ROI_08114__m_3809933_sw_14_060_20210909.png
evoland/results/SR/naip/png/HR__ROI_08463__m_3809960_ne_14_060_20210909.png
evoland/results/SR/naip/png/HR__ROI_08631__m_3409947_nw_14_060_20210919.png
evoland/results/SR/naip/png/HR__ROI_08872__m_4210422_sw_13_060_20190711.png
evoland/results/SR/naip/png/HR__ROI_08930__m_3410719_se_13_060_20200516.png
evoland/results/SR/naip/png/HR__ROI_09164__m_3210836_ne_12_060_20200517.png
evoland/results/SR/naip/png/HR__ROI_09337__m_4609958_nw_14_060_20200818.png
evoland/results/SR/naip/png/HR__ROI_09518__m_4309958_nw_14_060_20210917.png
evoland/results/SR/naip/png/HR__ROI_10317__m_3211226_se_12_060_20211113.png
evoland/results/SR/naip/png/HR__ROI_10611__m_4411335_sw_12_060_20210925.png
evoland/results/SR/naip/png/HR__ROI_10807__m_4012212_nw_10_060_20200713.png
evoland/results/SR/naip/png/HR__ROI_10848__m_4310032_se_14_060_20210917.png
evoland/results/SR/naip/png/HR__ROI_10903__m_4809957_sw_14_060_20190715.png
evoland/results/SR/naip/png/HR__ROI_11195__m_4210611_se_13_060_20190711.png
evoland/results/SR/naip/png/HR__ROI_11495__m_4210652_ne_13_060_20190711.png
evoland/results/SR/naip/png/HR__ROI_11533__m_3709838_ne_14_060_20190712.png
evoland/results/SR/naip/png/HR__ROI_11628__m_3410947_ne_12_060_20211115.png
evoland/results/SR/naip/png/HR__ROI_11746__m_4610048_sw_14_060_20200818.png
evoland/results/SR/naip/png/HR__ROI_12264__m_4211664_ne_11_060_20190714.png
evoland/results/SR/naip/png/HR__ROI_12389__m_3409511_sw_15_060_20210923.png
evoland/results/SR/naip/png/HR__ROI_12628__m_4109961_nw_14_060_20200808.png
evoland/results/SR/naip/png/HR__ROI_13050__m_3210044_sw_14_060_20200925.png
evoland/results/SR/naip/png/HR__ROI_13075__m_3411354_sw_12_060_20211204.png
evoland/results/SR/naip/png/HR__ROI_13496__m_4809741_ne_14_060_20210928.png
evoland/results/SR/naip/png/HR__ROI_13498__m_2910331_nw_13_060_20201007.png
evoland/results/SR/naip/png/HR__ROI_13507__m_4311655_ne_11_060_20190714.png
evoland/results/SR/naip/png/HR__ROI_13526__m_2809723_nw_14_060_20200501.png
evoland/results/SR/naip/png/HR__ROI_13742__m_2910315_nw_13_060_20201007.png
evoland/results/SR/naip/png/HR__ROI_13889__m_3110514_sw_13_060_20201011.png
evoland/results/SR/spain_crops/geotiff/HR__ROI_00001__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
evoland/results/SR/spain_crops/geotiff/HR__ROI_00002__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
evoland/results/SR/spain_crops/geotiff/HR__ROI_00003__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
evoland/results/SR/spain_crops/geotiff/HR__ROI_00004__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
evoland/results/SR/spain_crops/geotiff/HR__ROI_00005__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
evoland/results/SR/spain_crops/geotiff/HR__ROI_00006__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
evoland/results/SR/spain_crops/geotiff/HR__ROI_00007__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
evoland/results/SR/spain_crops/geotiff/HR__ROI_00008__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
evoland/results/SR/spain_crops/geotiff/HR__ROI_00010__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
evoland/results/SR/spain_crops/geotiff/HR__ROI_00011__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
evoland/results/SR/spain_crops/geotiff/HR__ROI_00012__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
evoland/results/SR/spain_crops/geotiff/HR__ROI_00013__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
evoland/results/SR/spain_crops/geotiff/HR__ROI_00014__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
evoland/results/SR/spain_crops/geotiff/HR__ROI_00015__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
evoland/results/SR/spain_crops/geotiff/HR__ROI_00016__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
evoland/results/SR/spain_crops/geotiff/HR__ROI_00017__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
evoland/results/SR/spain_crops/geotiff/HR__ROI_00019__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0722-1.tif
evoland/results/SR/spain_crops/geotiff/HR__ROI_00023__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
evoland/results/SR/spain_crops/geotiff/HR__ROI_00024__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
evoland/results/SR/spain_crops/geotiff/HR__ROI_00025__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
evoland/results/SR/spain_crops/geotiff/HR__ROI_00026__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
evoland/results/SR/spain_crops/geotiff/HR__ROI_00027__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
evoland/results/SR/spain_crops/geotiff/HR__ROI_00028__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
evoland/results/SR/spain_crops/geotiff/HR__ROI_00030__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
evoland/results/SR/spain_crops/geotiff/HR__ROI_00031__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
evoland/results/SR/spain_crops/geotiff/HR__ROI_00032__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
evoland/results/SR/spain_crops/geotiff/HR__ROI_00033__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
evoland/results/SR/spain_crops/geotiff/HR__ROI_00034__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
evoland/results/SR/spain_crops/png/HR__ROI_00001__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
evoland/results/SR/spain_crops/png/HR__ROI_00002__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
evoland/results/SR/spain_crops/png/HR__ROI_00003__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
evoland/results/SR/spain_crops/png/HR__ROI_00004__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
evoland/results/SR/spain_crops/png/HR__ROI_00005__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
evoland/results/SR/spain_crops/png/HR__ROI_00006__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
evoland/results/SR/spain_crops/png/HR__ROI_00007__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
evoland/results/SR/spain_crops/png/HR__ROI_00008__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
evoland/results/SR/spain_crops/png/HR__ROI_00010__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
evoland/results/SR/spain_crops/png/HR__ROI_00011__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
evoland/results/SR/spain_crops/png/HR__ROI_00012__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
evoland/results/SR/spain_crops/png/HR__ROI_00013__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
evoland/results/SR/spain_crops/png/HR__ROI_00014__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
evoland/results/SR/spain_crops/png/HR__ROI_00015__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
evoland/results/SR/spain_crops/png/HR__ROI_00016__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
evoland/results/SR/spain_crops/png/HR__ROI_00017__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
evoland/results/SR/spain_crops/png/HR__ROI_00019__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0722-1.png
evoland/results/SR/spain_crops/png/HR__ROI_00023__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
evoland/results/SR/spain_crops/png/HR__ROI_00024__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
evoland/results/SR/spain_crops/png/HR__ROI_00025__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
evoland/results/SR/spain_crops/png/HR__ROI_00026__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
evoland/results/SR/spain_crops/png/HR__ROI_00027__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
evoland/results/SR/spain_crops/png/HR__ROI_00028__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
evoland/results/SR/spain_crops/png/HR__ROI_00030__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
evoland/results/SR/spain_crops/png/HR__ROI_00031__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
evoland/results/SR/spain_crops/png/HR__ROI_00032__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
evoland/results/SR/spain_crops/png/HR__ROI_00033__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
evoland/results/SR/spain_crops/png/HR__ROI_00034__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
evoland/results/SR/spain_urban/geotiff/HR__ROI_00001__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
evoland/results/SR/spain_urban/geotiff/HR__ROI_00002__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
evoland/results/SR/spain_urban/geotiff/HR__ROI_00004__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
evoland/results/SR/spain_urban/geotiff/HR__ROI_00006__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
evoland/results/SR/spain_urban/geotiff/HR__ROI_00007__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
evoland/results/SR/spain_urban/geotiff/HR__ROI_00009__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
evoland/results/SR/spain_urban/geotiff/HR__ROI_00010__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
evoland/results/SR/spain_urban/geotiff/HR__ROI_00011__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
evoland/results/SR/spain_urban/geotiff/HR__ROI_00013__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
evoland/results/SR/spain_urban/geotiff/HR__ROI_00014__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
evoland/results/SR/spain_urban/geotiff/HR__ROI_00026__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
evoland/results/SR/spain_urban/geotiff/HR__ROI_00027__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
evoland/results/SR/spain_urban/geotiff/HR__ROI_00028__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
evoland/results/SR/spain_urban/geotiff/HR__ROI_00030__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
evoland/results/SR/spain_urban/geotiff/HR__ROI_00031__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
evoland/results/SR/spain_urban/geotiff/HR__ROI_00032__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
evoland/results/SR/spain_urban/geotiff/HR__ROI_00033__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
evoland/results/SR/spain_urban/geotiff/HR__ROI_00034__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
evoland/results/SR/spain_urban/geotiff/HR__ROI_00035__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
evoland/results/SR/spain_urban/geotiff/HR__ROI_00036__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
evoland/results/SR/spain_urban/png/HR__ROI_00001__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
evoland/results/SR/spain_urban/png/HR__ROI_00002__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
evoland/results/SR/spain_urban/png/HR__ROI_00004__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
evoland/results/SR/spain_urban/png/HR__ROI_00006__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
evoland/results/SR/spain_urban/png/HR__ROI_00007__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
evoland/results/SR/spain_urban/png/HR__ROI_00009__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
evoland/results/SR/spain_urban/png/HR__ROI_00010__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
evoland/results/SR/spain_urban/png/HR__ROI_00011__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
evoland/results/SR/spain_urban/png/HR__ROI_00013__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
evoland/results/SR/spain_urban/png/HR__ROI_00014__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
evoland/results/SR/spain_urban/png/HR__ROI_00026__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
evoland/results/SR/spain_urban/png/HR__ROI_00027__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
evoland/results/SR/spain_urban/png/HR__ROI_00028__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
evoland/results/SR/spain_urban/png/HR__ROI_00030__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
evoland/results/SR/spain_urban/png/HR__ROI_00031__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
evoland/results/SR/spain_urban/png/HR__ROI_00032__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
evoland/results/SR/spain_urban/png/HR__ROI_00033__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
evoland/results/SR/spain_urban/png/HR__ROI_00034__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
evoland/results/SR/spain_urban/png/HR__ROI_00035__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
evoland/results/SR/spain_urban/png/HR__ROI_00036__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
evoland/results/SR/spot/geotiff/ROI_0037__IMG_SPOT6_MS_201702050755046_ORT_ff6f9336-c21e-4081-c072-6038d0f53297_R1C1.tif
evoland/results/SR/spot/geotiff/ROI_0050__IMG_SPOT6_MS_201702220817301_ORT_7f0f2ccb-d59c-41eb-c1f3-27856284016a_R1C1.tif
evoland/results/SR/spot/geotiff/ROI_0117__IMG_SPOT6_MS_201705131607216_ORT_97c1e2b1-ebe8-49d9-c9d0-ae9370a8424a_R1C1.tif
evoland/results/SR/spot/geotiff/ROI_0803__IMG_SPOT6_MS_201903020839263_ORT_fd4ee860-4321-4bb8-cb00-fbc163d2b90f_R1C1.tif
evoland/results/SR/spot/geotiff/ROI_0967__IMG_SPOT6_MS_201910190953241_ORT_a0e55b71-b9f2-4fef-cfc4-8b8e375e47a5_R1C1.tif
evoland/results/SR/spot/geotiff/ROI_1647__IMG_SPOT6_MS_202107211821022_ORT_6cb84e1b-0eae-4daa-cdbe-9a27b94d2244_R1C1.tif
evoland/results/SR/spot/geotiff/ROI_2603__IMG_SPOT7_MS_201907190724338_ORT_2abb8cd4-5a93-4c58-ccb3-697c70f52dce_R1C1.tif
evoland/results/SR/spot/geotiff/ROI_3126__IMG_SPOT7_MS_202011250946543_ORT_aa60c730-be23-4286-c20f-2629d82909ca_R1C1.tif
evoland/results/SR/spot/geotiff/ROI_3171__IMG_SPOT7_MS_202101070832438_ORT_821c8f18-7eb9-4438-c475-4a193446fb48_R1C1.tif
evoland/results/SR/spot/png/ROI_0037__IMG_SPOT6_MS_201702050755046_ORT_ff6f9336-c21e-4081-c072-6038d0f53297_R1C1.png
evoland/results/SR/spot/png/ROI_0050__IMG_SPOT6_MS_201702220817301_ORT_7f0f2ccb-d59c-41eb-c1f3-27856284016a_R1C1.png
evoland/results/SR/spot/png/ROI_0117__IMG_SPOT6_MS_201705131607216_ORT_97c1e2b1-ebe8-49d9-c9d0-ae9370a8424a_R1C1.png
evoland/results/SR/spot/png/ROI_0803__IMG_SPOT6_MS_201903020839263_ORT_fd4ee860-4321-4bb8-cb00-fbc163d2b90f_R1C1.png
evoland/results/SR/spot/png/ROI_0967__IMG_SPOT6_MS_201910190953241_ORT_a0e55b71-b9f2-4fef-cfc4-8b8e375e47a5_R1C1.png
evoland/results/SR/spot/png/ROI_1647__IMG_SPOT6_MS_202107211821022_ORT_6cb84e1b-0eae-4daa-cdbe-9a27b94d2244_R1C1.png
evoland/results/SR/spot/png/ROI_2603__IMG_SPOT7_MS_201907190724338_ORT_2abb8cd4-5a93-4c58-ccb3-697c70f52dce_R1C1.png
evoland/results/SR/spot/png/ROI_3126__IMG_SPOT7_MS_202011250946543_ORT_aa60c730-be23-4286-c20f-2629d82909ca_R1C1.png
evoland/results/SR/spot/png/ROI_3171__IMG_SPOT7_MS_202101070832438_ORT_821c8f18-7eb9-4438-c475-4a193446fb48_R1C1.png
evoland/results/SR/venus/geotiff/ROI_0005.tif
evoland/results/SR/venus/geotiff/ROI_0006.tif
evoland/results/SR/venus/geotiff/ROI_0007.tif
evoland/results/SR/venus/geotiff/ROI_0008.tif
evoland/results/SR/venus/geotiff/ROI_0009.tif
evoland/results/SR/venus/geotiff/ROI_0010.tif
evoland/results/SR/venus/geotiff/ROI_0011.tif
evoland/results/SR/venus/geotiff/ROI_0015.tif
evoland/results/SR/venus/geotiff/ROI_0017.tif
evoland/results/SR/venus/geotiff/ROI_0018.tif
evoland/results/SR/venus/geotiff/ROI_0019.tif
evoland/results/SR/venus/geotiff/ROI_0020.tif
evoland/results/SR/venus/geotiff/ROI_0021.tif
evoland/results/SR/venus/geotiff/ROI_0023.tif
evoland/results/SR/venus/geotiff/ROI_0024.tif
evoland/results/SR/venus/geotiff/ROI_0025.tif
evoland/results/SR/venus/geotiff/ROI_0026.tif
evoland/results/SR/venus/geotiff/ROI_0027.tif
evoland/results/SR/venus/geotiff/ROI_0029.tif
evoland/results/SR/venus/geotiff/ROI_0030.tif
evoland/results/SR/venus/geotiff/ROI_0031.tif
evoland/results/SR/venus/geotiff/ROI_0032.tif
evoland/results/SR/venus/geotiff/ROI_0033.tif
evoland/results/SR/venus/geotiff/ROI_0034.tif
evoland/results/SR/venus/geotiff/ROI_0036.tif
evoland/results/SR/venus/geotiff/ROI_0037.tif
evoland/results/SR/venus/geotiff/ROI_0038.tif
evoland/results/SR/venus/geotiff/ROI_0040.tif
evoland/results/SR/venus/geotiff/ROI_0041.tif
evoland/results/SR/venus/geotiff/ROI_0042.tif
evoland/results/SR/venus/geotiff/ROI_0045.tif
evoland/results/SR/venus/geotiff/ROI_0046.tif
evoland/results/SR/venus/geotiff/ROI_0049.tif
evoland/results/SR/venus/geotiff/ROI_0050.tif
evoland/results/SR/venus/geotiff/ROI_0051.tif
evoland/results/SR/venus/geotiff/ROI_0055.tif
evoland/results/SR/venus/geotiff/ROI_0059.tif
evoland/results/SR/venus/geotiff/ROI_0061.tif
evoland/results/SR/venus/geotiff/ROI_0063.tif
evoland/results/SR/venus/geotiff/ROI_0066.tif
evoland/results/SR/venus/geotiff/ROI_0067.tif
evoland/results/SR/venus/geotiff/ROI_0068.tif
evoland/results/SR/venus/geotiff/ROI_0069.tif
evoland/results/SR/venus/geotiff/ROI_0072.tif
evoland/results/SR/venus/geotiff/ROI_0073.tif
evoland/results/SR/venus/geotiff/ROI_0074.tif
evoland/results/SR/venus/geotiff/ROI_0075.tif
evoland/results/SR/venus/geotiff/ROI_0077.tif
evoland/results/SR/venus/geotiff/ROI_0078.tif
evoland/results/SR/venus/geotiff/ROI_0082.tif
evoland/results/SR/venus/geotiff/ROI_0085.tif
evoland/results/SR/venus/geotiff/ROI_0089.tif
evoland/results/SR/venus/geotiff/ROI_0098.tif
evoland/results/SR/venus/geotiff/ROI_0111.tif
evoland/results/SR/venus/geotiff/ROI_0112.tif
evoland/results/SR/venus/geotiff/ROI_0115.tif
evoland/results/SR/venus/geotiff/ROI_0116.tif
evoland/results/SR/venus/geotiff/ROI_0117.tif
evoland/results/SR/venus/geotiff/ROI_0118.tif
evoland/results/SR/venus/png/ROI_0005.png
evoland/results/SR/venus/png/ROI_0006.png
evoland/results/SR/venus/png/ROI_0007.png
evoland/results/SR/venus/png/ROI_0008.png
evoland/results/SR/venus/png/ROI_0009.png
evoland/results/SR/venus/png/ROI_0010.png
evoland/results/SR/venus/png/ROI_0011.png
evoland/results/SR/venus/png/ROI_0015.png
evoland/results/SR/venus/png/ROI_0017.png
evoland/results/SR/venus/png/ROI_0018.png
evoland/results/SR/venus/png/ROI_0019.png
evoland/results/SR/venus/png/ROI_0020.png
evoland/results/SR/venus/png/ROI_0021.png
evoland/results/SR/venus/png/ROI_0023.png
evoland/results/SR/venus/png/ROI_0024.png
evoland/results/SR/venus/png/ROI_0025.png
evoland/results/SR/venus/png/ROI_0026.png
evoland/results/SR/venus/png/ROI_0027.png
evoland/results/SR/venus/png/ROI_0029.png
evoland/results/SR/venus/png/ROI_0030.png
evoland/results/SR/venus/png/ROI_0031.png
evoland/results/SR/venus/png/ROI_0032.png
evoland/results/SR/venus/png/ROI_0033.png
evoland/results/SR/venus/png/ROI_0034.png
evoland/results/SR/venus/png/ROI_0036.png
evoland/results/SR/venus/png/ROI_0037.png
evoland/results/SR/venus/png/ROI_0038.png
evoland/results/SR/venus/png/ROI_0040.png
evoland/results/SR/venus/png/ROI_0041.png
evoland/results/SR/venus/png/ROI_0042.png
evoland/results/SR/venus/png/ROI_0045.png
evoland/results/SR/venus/png/ROI_0046.png
evoland/results/SR/venus/png/ROI_0049.png
evoland/results/SR/venus/png/ROI_0050.png
evoland/results/SR/venus/png/ROI_0051.png
evoland/results/SR/venus/png/ROI_0055.png
evoland/results/SR/venus/png/ROI_0059.png
evoland/results/SR/venus/png/ROI_0061.png
evoland/results/SR/venus/png/ROI_0063.png
evoland/results/SR/venus/png/ROI_0066.png
evoland/results/SR/venus/png/ROI_0067.png
evoland/results/SR/venus/png/ROI_0068.png
evoland/results/SR/venus/png/ROI_0069.png
evoland/results/SR/venus/png/ROI_0072.png
evoland/results/SR/venus/png/ROI_0073.png
evoland/results/SR/venus/png/ROI_0074.png
evoland/results/SR/venus/png/ROI_0075.png
evoland/results/SR/venus/png/ROI_0077.png
evoland/results/SR/venus/png/ROI_0078.png
evoland/results/SR/venus/png/ROI_0082.png
evoland/results/SR/venus/png/ROI_0085.png
evoland/results/SR/venus/png/ROI_0089.png
evoland/results/SR/venus/png/ROI_0098.png
evoland/results/SR/venus/png/ROI_0111.png
evoland/results/SR/venus/png/ROI_0112.png
evoland/results/SR/venus/png/ROI_0115.png
evoland/results/SR/venus/png/ROI_0116.png
evoland/results/SR/venus/png/ROI_0117.png
evoland/results/SR/venus/png/ROI_0118.png
evoland/run.py
evoland/utils.py
evoland/weights/carn_3x3x64g4sw_bootstrap.onnx ONNX
ldm_baseline/ldm_baseline.zip
ldm_baseline/metadata.json
ldm_baseline/results/SR/naip/geotiff/HR__ROI_00006__m_4411338_ne_12_060_20210917.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_00270__m_3809943_sw_14_060_20210909.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_00319__m_3609931_se_14_060_20190627.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_00399__m_3809910_sw_14_060_20210909.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_00438__m_3409938_ne_14_060_20210919.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_00456__m_3510353_sw_13_060_20200521.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_00565__m_3410123_se_14_060_20200828.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_01566__m_3211262_nw_12_060_20211113.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_01619__m_4211110_ne_12_060_20190926.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_01750__m_4011251_se_12_060_20210925.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_02524__m_2709848_sw_14_060_20200501.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_02604__m_4110621_sw_13_060_20190711.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_03017__m_3410355_se_13_060_20200521.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_03107__m_3809920_sw_14_060_20210909.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_03117__m_4110739_sw_13_060_20190711.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_03127__m_3211246_nw_12_060_20211113.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_03578__m_3609959_nw_14_060_20210919.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_03696__m_3809959_nw_14_060_20210909.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_03715__m_2910329_sw_13_060_20201008.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_03961__m_3210835_se_12_060_20200517.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_04886__m_3509819_nw_14_060_20210906.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_05095__m_4410348_nw_13_060_20211005.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_05262__m_3410713_nw_13_060_20200516.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_05509__m_3311331_sw_12_060_20211204.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_05609__m_3809944_se_14_060_20210909.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_05839__m_3709911_sw_14_060_20190712.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_06305__m_4511313_se_12_060_20211002.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_06588__m_3410304_nw_13_060_20200521.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_06795__m_2910038_sw_14_060_20201011.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_06937__m_4509541_ne_15_060_20190808.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_07145__m_3410332_nw_13_060_20200521.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_07401__m_4110136_sw_14_060_20200729.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_07911__m_3210860_se_12_060_20200517.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_08114__m_3809933_sw_14_060_20210909.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_08463__m_3809960_ne_14_060_20210909.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_08631__m_3409947_nw_14_060_20210919.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_08872__m_4210422_sw_13_060_20190711.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_08930__m_3410719_se_13_060_20200516.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_09164__m_3210836_ne_12_060_20200517.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_09337__m_4609958_nw_14_060_20200818.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_09518__m_4309958_nw_14_060_20210917.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_10317__m_3211226_se_12_060_20211113.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_10611__m_4411335_sw_12_060_20210925.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_10807__m_4012212_nw_10_060_20200713.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_10848__m_4310032_se_14_060_20210917.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_10903__m_4809957_sw_14_060_20190715.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_11195__m_4210611_se_13_060_20190711.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_11495__m_4210652_ne_13_060_20190711.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_11533__m_3709838_ne_14_060_20190712.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_11628__m_3410947_ne_12_060_20211115.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_11746__m_4610048_sw_14_060_20200818.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_12264__m_4211664_ne_11_060_20190714.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_12389__m_3409511_sw_15_060_20210923.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_12628__m_4109961_nw_14_060_20200808.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_13050__m_3210044_sw_14_060_20200925.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_13075__m_3411354_sw_12_060_20211204.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_13496__m_4809741_ne_14_060_20210928.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_13498__m_2910331_nw_13_060_20201007.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_13507__m_4311655_ne_11_060_20190714.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_13526__m_2809723_nw_14_060_20200501.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_13742__m_2910315_nw_13_060_20201007.tif
ldm_baseline/results/SR/naip/geotiff/HR__ROI_13889__m_3110514_sw_13_060_20201011.tif
ldm_baseline/results/SR/naip/png/HR__ROI_00006__m_4411338_ne_12_060_20210917.png
ldm_baseline/results/SR/naip/png/HR__ROI_00270__m_3809943_sw_14_060_20210909.png
ldm_baseline/results/SR/naip/png/HR__ROI_00319__m_3609931_se_14_060_20190627.png
ldm_baseline/results/SR/naip/png/HR__ROI_00399__m_3809910_sw_14_060_20210909.png
ldm_baseline/results/SR/naip/png/HR__ROI_00438__m_3409938_ne_14_060_20210919.png
ldm_baseline/results/SR/naip/png/HR__ROI_00456__m_3510353_sw_13_060_20200521.png
ldm_baseline/results/SR/naip/png/HR__ROI_00565__m_3410123_se_14_060_20200828.png
ldm_baseline/results/SR/naip/png/HR__ROI_01566__m_3211262_nw_12_060_20211113.png
ldm_baseline/results/SR/naip/png/HR__ROI_01619__m_4211110_ne_12_060_20190926.png
ldm_baseline/results/SR/naip/png/HR__ROI_01750__m_4011251_se_12_060_20210925.png
ldm_baseline/results/SR/naip/png/HR__ROI_02524__m_2709848_sw_14_060_20200501.png
ldm_baseline/results/SR/naip/png/HR__ROI_02604__m_4110621_sw_13_060_20190711.png
ldm_baseline/results/SR/naip/png/HR__ROI_03017__m_3410355_se_13_060_20200521.png
ldm_baseline/results/SR/naip/png/HR__ROI_03107__m_3809920_sw_14_060_20210909.png
ldm_baseline/results/SR/naip/png/HR__ROI_03117__m_4110739_sw_13_060_20190711.png
ldm_baseline/results/SR/naip/png/HR__ROI_03127__m_3211246_nw_12_060_20211113.png
ldm_baseline/results/SR/naip/png/HR__ROI_03578__m_3609959_nw_14_060_20210919.png
ldm_baseline/results/SR/naip/png/HR__ROI_03696__m_3809959_nw_14_060_20210909.png
ldm_baseline/results/SR/naip/png/HR__ROI_03715__m_2910329_sw_13_060_20201008.png
ldm_baseline/results/SR/naip/png/HR__ROI_03961__m_3210835_se_12_060_20200517.png
ldm_baseline/results/SR/naip/png/HR__ROI_04886__m_3509819_nw_14_060_20210906.png
ldm_baseline/results/SR/naip/png/HR__ROI_05095__m_4410348_nw_13_060_20211005.png
ldm_baseline/results/SR/naip/png/HR__ROI_05262__m_3410713_nw_13_060_20200516.png
ldm_baseline/results/SR/naip/png/HR__ROI_05509__m_3311331_sw_12_060_20211204.png
ldm_baseline/results/SR/naip/png/HR__ROI_05609__m_3809944_se_14_060_20210909.png
ldm_baseline/results/SR/naip/png/HR__ROI_05839__m_3709911_sw_14_060_20190712.png
ldm_baseline/results/SR/naip/png/HR__ROI_06305__m_4511313_se_12_060_20211002.png
ldm_baseline/results/SR/naip/png/HR__ROI_06588__m_3410304_nw_13_060_20200521.png
ldm_baseline/results/SR/naip/png/HR__ROI_06795__m_2910038_sw_14_060_20201011.png
ldm_baseline/results/SR/naip/png/HR__ROI_06937__m_4509541_ne_15_060_20190808.png
ldm_baseline/results/SR/naip/png/HR__ROI_07145__m_3410332_nw_13_060_20200521.png
ldm_baseline/results/SR/naip/png/HR__ROI_07401__m_4110136_sw_14_060_20200729.png
ldm_baseline/results/SR/naip/png/HR__ROI_07911__m_3210860_se_12_060_20200517.png
ldm_baseline/results/SR/naip/png/HR__ROI_08114__m_3809933_sw_14_060_20210909.png
ldm_baseline/results/SR/naip/png/HR__ROI_08463__m_3809960_ne_14_060_20210909.png
ldm_baseline/results/SR/naip/png/HR__ROI_08631__m_3409947_nw_14_060_20210919.png
ldm_baseline/results/SR/naip/png/HR__ROI_08872__m_4210422_sw_13_060_20190711.png
ldm_baseline/results/SR/naip/png/HR__ROI_08930__m_3410719_se_13_060_20200516.png
ldm_baseline/results/SR/naip/png/HR__ROI_09164__m_3210836_ne_12_060_20200517.png
ldm_baseline/results/SR/naip/png/HR__ROI_09337__m_4609958_nw_14_060_20200818.png
ldm_baseline/results/SR/naip/png/HR__ROI_09518__m_4309958_nw_14_060_20210917.png
ldm_baseline/results/SR/naip/png/HR__ROI_10317__m_3211226_se_12_060_20211113.png
ldm_baseline/results/SR/naip/png/HR__ROI_10611__m_4411335_sw_12_060_20210925.png
ldm_baseline/results/SR/naip/png/HR__ROI_10807__m_4012212_nw_10_060_20200713.png
ldm_baseline/results/SR/naip/png/HR__ROI_10848__m_4310032_se_14_060_20210917.png
ldm_baseline/results/SR/naip/png/HR__ROI_10903__m_4809957_sw_14_060_20190715.png
ldm_baseline/results/SR/naip/png/HR__ROI_11195__m_4210611_se_13_060_20190711.png
ldm_baseline/results/SR/naip/png/HR__ROI_11495__m_4210652_ne_13_060_20190711.png
ldm_baseline/results/SR/naip/png/HR__ROI_11533__m_3709838_ne_14_060_20190712.png
ldm_baseline/results/SR/naip/png/HR__ROI_11628__m_3410947_ne_12_060_20211115.png
ldm_baseline/results/SR/naip/png/HR__ROI_11746__m_4610048_sw_14_060_20200818.png
ldm_baseline/results/SR/naip/png/HR__ROI_12264__m_4211664_ne_11_060_20190714.png
ldm_baseline/results/SR/naip/png/HR__ROI_12389__m_3409511_sw_15_060_20210923.png
ldm_baseline/results/SR/naip/png/HR__ROI_12628__m_4109961_nw_14_060_20200808.png
ldm_baseline/results/SR/naip/png/HR__ROI_13050__m_3210044_sw_14_060_20200925.png
ldm_baseline/results/SR/naip/png/HR__ROI_13075__m_3411354_sw_12_060_20211204.png
ldm_baseline/results/SR/naip/png/HR__ROI_13496__m_4809741_ne_14_060_20210928.png
ldm_baseline/results/SR/naip/png/HR__ROI_13498__m_2910331_nw_13_060_20201007.png
ldm_baseline/results/SR/naip/png/HR__ROI_13507__m_4311655_ne_11_060_20190714.png
ldm_baseline/results/SR/naip/png/HR__ROI_13526__m_2809723_nw_14_060_20200501.png
ldm_baseline/results/SR/naip/png/HR__ROI_13742__m_2910315_nw_13_060_20201007.png
ldm_baseline/results/SR/naip/png/HR__ROI_13889__m_3110514_sw_13_060_20201011.png
ldm_baseline/results/SR/spain_crops/geotiff/HR__ROI_00001__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
ldm_baseline/results/SR/spain_crops/geotiff/HR__ROI_00002__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
ldm_baseline/results/SR/spain_crops/geotiff/HR__ROI_00003__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
ldm_baseline/results/SR/spain_crops/geotiff/HR__ROI_00004__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
ldm_baseline/results/SR/spain_crops/geotiff/HR__ROI_00005__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
ldm_baseline/results/SR/spain_crops/geotiff/HR__ROI_00006__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
ldm_baseline/results/SR/spain_crops/geotiff/HR__ROI_00007__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
ldm_baseline/results/SR/spain_crops/geotiff/HR__ROI_00008__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
ldm_baseline/results/SR/spain_crops/geotiff/HR__ROI_00010__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
ldm_baseline/results/SR/spain_crops/geotiff/HR__ROI_00011__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
ldm_baseline/results/SR/spain_crops/geotiff/HR__ROI_00012__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
ldm_baseline/results/SR/spain_crops/geotiff/HR__ROI_00013__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
ldm_baseline/results/SR/spain_crops/geotiff/HR__ROI_00014__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
ldm_baseline/results/SR/spain_crops/geotiff/HR__ROI_00015__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
ldm_baseline/results/SR/spain_crops/geotiff/HR__ROI_00016__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
ldm_baseline/results/SR/spain_crops/geotiff/HR__ROI_00017__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
ldm_baseline/results/SR/spain_crops/geotiff/HR__ROI_00019__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0722-1.tif
ldm_baseline/results/SR/spain_crops/geotiff/HR__ROI_00023__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
ldm_baseline/results/SR/spain_crops/geotiff/HR__ROI_00024__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
ldm_baseline/results/SR/spain_crops/geotiff/HR__ROI_00025__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
ldm_baseline/results/SR/spain_crops/geotiff/HR__ROI_00026__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
ldm_baseline/results/SR/spain_crops/geotiff/HR__ROI_00027__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
ldm_baseline/results/SR/spain_crops/geotiff/HR__ROI_00028__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
ldm_baseline/results/SR/spain_crops/geotiff/HR__ROI_00030__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
ldm_baseline/results/SR/spain_crops/geotiff/HR__ROI_00031__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
ldm_baseline/results/SR/spain_crops/geotiff/HR__ROI_00032__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
ldm_baseline/results/SR/spain_crops/geotiff/HR__ROI_00033__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
ldm_baseline/results/SR/spain_crops/geotiff/HR__ROI_00034__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
ldm_baseline/results/SR/spain_crops/png/HR__ROI_00001__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
ldm_baseline/results/SR/spain_crops/png/HR__ROI_00002__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
ldm_baseline/results/SR/spain_crops/png/HR__ROI_00003__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
ldm_baseline/results/SR/spain_crops/png/HR__ROI_00004__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
ldm_baseline/results/SR/spain_crops/png/HR__ROI_00005__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
ldm_baseline/results/SR/spain_crops/png/HR__ROI_00006__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
ldm_baseline/results/SR/spain_crops/png/HR__ROI_00007__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
ldm_baseline/results/SR/spain_crops/png/HR__ROI_00008__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
ldm_baseline/results/SR/spain_crops/png/HR__ROI_00010__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
ldm_baseline/results/SR/spain_crops/png/HR__ROI_00011__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
ldm_baseline/results/SR/spain_crops/png/HR__ROI_00012__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
ldm_baseline/results/SR/spain_crops/png/HR__ROI_00013__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
ldm_baseline/results/SR/spain_crops/png/HR__ROI_00014__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
ldm_baseline/results/SR/spain_crops/png/HR__ROI_00015__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
ldm_baseline/results/SR/spain_crops/png/HR__ROI_00016__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
ldm_baseline/results/SR/spain_crops/png/HR__ROI_00017__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
ldm_baseline/results/SR/spain_crops/png/HR__ROI_00019__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0722-1.png
ldm_baseline/results/SR/spain_crops/png/HR__ROI_00023__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
ldm_baseline/results/SR/spain_crops/png/HR__ROI_00024__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
ldm_baseline/results/SR/spain_crops/png/HR__ROI_00025__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
ldm_baseline/results/SR/spain_crops/png/HR__ROI_00026__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
ldm_baseline/results/SR/spain_crops/png/HR__ROI_00027__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
ldm_baseline/results/SR/spain_crops/png/HR__ROI_00028__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
ldm_baseline/results/SR/spain_crops/png/HR__ROI_00030__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
ldm_baseline/results/SR/spain_crops/png/HR__ROI_00031__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
ldm_baseline/results/SR/spain_crops/png/HR__ROI_00032__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
ldm_baseline/results/SR/spain_crops/png/HR__ROI_00033__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
ldm_baseline/results/SR/spain_crops/png/HR__ROI_00034__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
ldm_baseline/results/SR/spain_urban/geotiff/HR__ROI_00001__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
ldm_baseline/results/SR/spain_urban/geotiff/HR__ROI_00002__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
ldm_baseline/results/SR/spain_urban/geotiff/HR__ROI_00004__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
ldm_baseline/results/SR/spain_urban/geotiff/HR__ROI_00006__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
ldm_baseline/results/SR/spain_urban/geotiff/HR__ROI_00007__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
ldm_baseline/results/SR/spain_urban/geotiff/HR__ROI_00009__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
ldm_baseline/results/SR/spain_urban/geotiff/HR__ROI_00010__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
ldm_baseline/results/SR/spain_urban/geotiff/HR__ROI_00011__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
ldm_baseline/results/SR/spain_urban/geotiff/HR__ROI_00013__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
ldm_baseline/results/SR/spain_urban/geotiff/HR__ROI_00014__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
ldm_baseline/results/SR/spain_urban/geotiff/HR__ROI_00026__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
ldm_baseline/results/SR/spain_urban/geotiff/HR__ROI_00027__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
ldm_baseline/results/SR/spain_urban/geotiff/HR__ROI_00028__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
ldm_baseline/results/SR/spain_urban/geotiff/HR__ROI_00030__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
ldm_baseline/results/SR/spain_urban/geotiff/HR__ROI_00031__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
ldm_baseline/results/SR/spain_urban/geotiff/HR__ROI_00032__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
ldm_baseline/results/SR/spain_urban/geotiff/HR__ROI_00033__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
ldm_baseline/results/SR/spain_urban/geotiff/HR__ROI_00034__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
ldm_baseline/results/SR/spain_urban/geotiff/HR__ROI_00035__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
ldm_baseline/results/SR/spain_urban/geotiff/HR__ROI_00036__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
ldm_baseline/results/SR/spain_urban/png/HR__ROI_00001__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
ldm_baseline/results/SR/spain_urban/png/HR__ROI_00002__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
ldm_baseline/results/SR/spain_urban/png/HR__ROI_00004__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
ldm_baseline/results/SR/spain_urban/png/HR__ROI_00006__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
ldm_baseline/results/SR/spain_urban/png/HR__ROI_00007__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
ldm_baseline/results/SR/spain_urban/png/HR__ROI_00009__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
ldm_baseline/results/SR/spain_urban/png/HR__ROI_00010__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
ldm_baseline/results/SR/spain_urban/png/HR__ROI_00011__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
ldm_baseline/results/SR/spain_urban/png/HR__ROI_00013__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
ldm_baseline/results/SR/spain_urban/png/HR__ROI_00014__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
ldm_baseline/results/SR/spain_urban/png/HR__ROI_00026__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
ldm_baseline/results/SR/spain_urban/png/HR__ROI_00027__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
ldm_baseline/results/SR/spain_urban/png/HR__ROI_00028__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
ldm_baseline/results/SR/spain_urban/png/HR__ROI_00030__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
ldm_baseline/results/SR/spain_urban/png/HR__ROI_00031__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
ldm_baseline/results/SR/spain_urban/png/HR__ROI_00032__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
ldm_baseline/results/SR/spain_urban/png/HR__ROI_00033__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
ldm_baseline/results/SR/spain_urban/png/HR__ROI_00034__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
ldm_baseline/results/SR/spain_urban/png/HR__ROI_00035__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
ldm_baseline/results/SR/spain_urban/png/HR__ROI_00036__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
ldm_baseline/results/SR/spot/geotiff/ROI_0037__IMG_SPOT6_MS_201702050755046_ORT_ff6f9336-c21e-4081-c072-6038d0f53297_R1C1.tif
ldm_baseline/results/SR/spot/geotiff/ROI_0050__IMG_SPOT6_MS_201702220817301_ORT_7f0f2ccb-d59c-41eb-c1f3-27856284016a_R1C1.tif
ldm_baseline/results/SR/spot/geotiff/ROI_0117__IMG_SPOT6_MS_201705131607216_ORT_97c1e2b1-ebe8-49d9-c9d0-ae9370a8424a_R1C1.tif
ldm_baseline/results/SR/spot/geotiff/ROI_0803__IMG_SPOT6_MS_201903020839263_ORT_fd4ee860-4321-4bb8-cb00-fbc163d2b90f_R1C1.tif
ldm_baseline/results/SR/spot/geotiff/ROI_0967__IMG_SPOT6_MS_201910190953241_ORT_a0e55b71-b9f2-4fef-cfc4-8b8e375e47a5_R1C1.tif
ldm_baseline/results/SR/spot/geotiff/ROI_1647__IMG_SPOT6_MS_202107211821022_ORT_6cb84e1b-0eae-4daa-cdbe-9a27b94d2244_R1C1.tif
ldm_baseline/results/SR/spot/geotiff/ROI_2603__IMG_SPOT7_MS_201907190724338_ORT_2abb8cd4-5a93-4c58-ccb3-697c70f52dce_R1C1.tif
ldm_baseline/results/SR/spot/geotiff/ROI_3126__IMG_SPOT7_MS_202011250946543_ORT_aa60c730-be23-4286-c20f-2629d82909ca_R1C1.tif
ldm_baseline/results/SR/spot/geotiff/ROI_3171__IMG_SPOT7_MS_202101070832438_ORT_821c8f18-7eb9-4438-c475-4a193446fb48_R1C1.tif
ldm_baseline/results/SR/spot/png/ROI_0037__IMG_SPOT6_MS_201702050755046_ORT_ff6f9336-c21e-4081-c072-6038d0f53297_R1C1.png
ldm_baseline/results/SR/spot/png/ROI_0050__IMG_SPOT6_MS_201702220817301_ORT_7f0f2ccb-d59c-41eb-c1f3-27856284016a_R1C1.png
ldm_baseline/results/SR/spot/png/ROI_0117__IMG_SPOT6_MS_201705131607216_ORT_97c1e2b1-ebe8-49d9-c9d0-ae9370a8424a_R1C1.png
ldm_baseline/results/SR/spot/png/ROI_0803__IMG_SPOT6_MS_201903020839263_ORT_fd4ee860-4321-4bb8-cb00-fbc163d2b90f_R1C1.png
ldm_baseline/results/SR/spot/png/ROI_0967__IMG_SPOT6_MS_201910190953241_ORT_a0e55b71-b9f2-4fef-cfc4-8b8e375e47a5_R1C1.png
ldm_baseline/results/SR/spot/png/ROI_1647__IMG_SPOT6_MS_202107211821022_ORT_6cb84e1b-0eae-4daa-cdbe-9a27b94d2244_R1C1.png
ldm_baseline/results/SR/spot/png/ROI_2603__IMG_SPOT7_MS_201907190724338_ORT_2abb8cd4-5a93-4c58-ccb3-697c70f52dce_R1C1.png
ldm_baseline/results/SR/spot/png/ROI_3126__IMG_SPOT7_MS_202011250946543_ORT_aa60c730-be23-4286-c20f-2629d82909ca_R1C1.png
ldm_baseline/results/SR/spot/png/ROI_3171__IMG_SPOT7_MS_202101070832438_ORT_821c8f18-7eb9-4438-c475-4a193446fb48_R1C1.png
ldm_baseline/results/SR/venus/geotiff/ROI_0005.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0006.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0007.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0008.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0009.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0010.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0011.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0015.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0017.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0018.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0019.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0020.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0021.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0023.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0024.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0025.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0026.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0027.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0029.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0030.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0031.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0032.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0033.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0034.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0036.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0037.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0038.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0040.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0041.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0042.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0045.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0046.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0049.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0050.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0051.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0055.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0059.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0061.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0063.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0066.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0067.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0068.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0069.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0072.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0073.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0074.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0075.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0077.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0078.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0082.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0085.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0089.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0098.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0111.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0112.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0115.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0116.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0117.tif
ldm_baseline/results/SR/venus/geotiff/ROI_0118.tif
ldm_baseline/results/SR/venus/png/ROI_0005.png
ldm_baseline/results/SR/venus/png/ROI_0006.png
ldm_baseline/results/SR/venus/png/ROI_0007.png
ldm_baseline/results/SR/venus/png/ROI_0008.png
ldm_baseline/results/SR/venus/png/ROI_0009.png
ldm_baseline/results/SR/venus/png/ROI_0010.png
ldm_baseline/results/SR/venus/png/ROI_0011.png
ldm_baseline/results/SR/venus/png/ROI_0015.png
ldm_baseline/results/SR/venus/png/ROI_0017.png
ldm_baseline/results/SR/venus/png/ROI_0018.png
ldm_baseline/results/SR/venus/png/ROI_0019.png
ldm_baseline/results/SR/venus/png/ROI_0020.png
ldm_baseline/results/SR/venus/png/ROI_0021.png
ldm_baseline/results/SR/venus/png/ROI_0023.png
ldm_baseline/results/SR/venus/png/ROI_0024.png
ldm_baseline/results/SR/venus/png/ROI_0025.png
ldm_baseline/results/SR/venus/png/ROI_0026.png
ldm_baseline/results/SR/venus/png/ROI_0027.png
ldm_baseline/results/SR/venus/png/ROI_0029.png
ldm_baseline/results/SR/venus/png/ROI_0030.png
ldm_baseline/results/SR/venus/png/ROI_0031.png
ldm_baseline/results/SR/venus/png/ROI_0032.png
ldm_baseline/results/SR/venus/png/ROI_0033.png
ldm_baseline/results/SR/venus/png/ROI_0034.png
ldm_baseline/results/SR/venus/png/ROI_0036.png
ldm_baseline/results/SR/venus/png/ROI_0037.png
ldm_baseline/results/SR/venus/png/ROI_0038.png
ldm_baseline/results/SR/venus/png/ROI_0040.png
ldm_baseline/results/SR/venus/png/ROI_0041.png
ldm_baseline/results/SR/venus/png/ROI_0042.png
ldm_baseline/results/SR/venus/png/ROI_0045.png
ldm_baseline/results/SR/venus/png/ROI_0046.png
ldm_baseline/results/SR/venus/png/ROI_0049.png
ldm_baseline/results/SR/venus/png/ROI_0050.png
ldm_baseline/results/SR/venus/png/ROI_0051.png
ldm_baseline/results/SR/venus/png/ROI_0055.png
ldm_baseline/results/SR/venus/png/ROI_0059.png
ldm_baseline/results/SR/venus/png/ROI_0061.png
ldm_baseline/results/SR/venus/png/ROI_0063.png
ldm_baseline/results/SR/venus/png/ROI_0066.png
ldm_baseline/results/SR/venus/png/ROI_0067.png
ldm_baseline/results/SR/venus/png/ROI_0068.png
ldm_baseline/results/SR/venus/png/ROI_0069.png
ldm_baseline/results/SR/venus/png/ROI_0072.png
ldm_baseline/results/SR/venus/png/ROI_0073.png
ldm_baseline/results/SR/venus/png/ROI_0074.png
ldm_baseline/results/SR/venus/png/ROI_0075.png
ldm_baseline/results/SR/venus/png/ROI_0077.png
ldm_baseline/results/SR/venus/png/ROI_0078.png
ldm_baseline/results/SR/venus/png/ROI_0082.png
ldm_baseline/results/SR/venus/png/ROI_0085.png
ldm_baseline/results/SR/venus/png/ROI_0089.png
ldm_baseline/results/SR/venus/png/ROI_0098.png
ldm_baseline/results/SR/venus/png/ROI_0111.png
ldm_baseline/results/SR/venus/png/ROI_0112.png
ldm_baseline/results/SR/venus/png/ROI_0115.png
ldm_baseline/results/SR/venus/png/ROI_0116.png
ldm_baseline/results/SR/venus/png/ROI_0117.png
ldm_baseline/results/SR/venus/png/ROI_0118.png
ldm_baseline/run.py
ldm_baseline/utils.py
opensrmodel/opensrmodel.zip
opensrmodel/results/SR/naip/geotiff/HR__ROI_00006__m_4411338_ne_12_060_20210917.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_00270__m_3809943_sw_14_060_20210909.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_00319__m_3609931_se_14_060_20190627.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_00399__m_3809910_sw_14_060_20210909.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_00438__m_3409938_ne_14_060_20210919.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_00456__m_3510353_sw_13_060_20200521.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_00565__m_3410123_se_14_060_20200828.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_01566__m_3211262_nw_12_060_20211113.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_01619__m_4211110_ne_12_060_20190926.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_01750__m_4011251_se_12_060_20210925.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_02524__m_2709848_sw_14_060_20200501.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_02604__m_4110621_sw_13_060_20190711.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_03017__m_3410355_se_13_060_20200521.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_03107__m_3809920_sw_14_060_20210909.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_03117__m_4110739_sw_13_060_20190711.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_03127__m_3211246_nw_12_060_20211113.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_03578__m_3609959_nw_14_060_20210919.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_03696__m_3809959_nw_14_060_20210909.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_03715__m_2910329_sw_13_060_20201008.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_03961__m_3210835_se_12_060_20200517.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_04886__m_3509819_nw_14_060_20210906.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_05095__m_4410348_nw_13_060_20211005.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_05262__m_3410713_nw_13_060_20200516.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_05509__m_3311331_sw_12_060_20211204.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_05609__m_3809944_se_14_060_20210909.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_05839__m_3709911_sw_14_060_20190712.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_06305__m_4511313_se_12_060_20211002.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_06588__m_3410304_nw_13_060_20200521.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_06795__m_2910038_sw_14_060_20201011.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_06937__m_4509541_ne_15_060_20190808.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_07145__m_3410332_nw_13_060_20200521.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_07401__m_4110136_sw_14_060_20200729.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_07911__m_3210860_se_12_060_20200517.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_08114__m_3809933_sw_14_060_20210909.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_08463__m_3809960_ne_14_060_20210909.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_08631__m_3409947_nw_14_060_20210919.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_08872__m_4210422_sw_13_060_20190711.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_08930__m_3410719_se_13_060_20200516.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_09164__m_3210836_ne_12_060_20200517.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_09337__m_4609958_nw_14_060_20200818.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_09518__m_4309958_nw_14_060_20210917.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_10317__m_3211226_se_12_060_20211113.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_10611__m_4411335_sw_12_060_20210925.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_10807__m_4012212_nw_10_060_20200713.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_10848__m_4310032_se_14_060_20210917.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_10903__m_4809957_sw_14_060_20190715.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_11195__m_4210611_se_13_060_20190711.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_11495__m_4210652_ne_13_060_20190711.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_11533__m_3709838_ne_14_060_20190712.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_11628__m_3410947_ne_12_060_20211115.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_11746__m_4610048_sw_14_060_20200818.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_12264__m_4211664_ne_11_060_20190714.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_12389__m_3409511_sw_15_060_20210923.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_12628__m_4109961_nw_14_060_20200808.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_13050__m_3210044_sw_14_060_20200925.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_13075__m_3411354_sw_12_060_20211204.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_13496__m_4809741_ne_14_060_20210928.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_13498__m_2910331_nw_13_060_20201007.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_13507__m_4311655_ne_11_060_20190714.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_13526__m_2809723_nw_14_060_20200501.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_13742__m_2910315_nw_13_060_20201007.tif
opensrmodel/results/SR/naip/geotiff/HR__ROI_13889__m_3110514_sw_13_060_20201011.tif
opensrmodel/results/SR/naip/png/HR__ROI_00006__m_4411338_ne_12_060_20210917.png
opensrmodel/results/SR/naip/png/HR__ROI_00270__m_3809943_sw_14_060_20210909.png
opensrmodel/results/SR/naip/png/HR__ROI_00319__m_3609931_se_14_060_20190627.png
opensrmodel/results/SR/naip/png/HR__ROI_00399__m_3809910_sw_14_060_20210909.png
opensrmodel/results/SR/naip/png/HR__ROI_00438__m_3409938_ne_14_060_20210919.png
opensrmodel/results/SR/naip/png/HR__ROI_00456__m_3510353_sw_13_060_20200521.png
opensrmodel/results/SR/naip/png/HR__ROI_00565__m_3410123_se_14_060_20200828.png
opensrmodel/results/SR/naip/png/HR__ROI_01566__m_3211262_nw_12_060_20211113.png
opensrmodel/results/SR/naip/png/HR__ROI_01619__m_4211110_ne_12_060_20190926.png
opensrmodel/results/SR/naip/png/HR__ROI_01750__m_4011251_se_12_060_20210925.png
opensrmodel/results/SR/naip/png/HR__ROI_02524__m_2709848_sw_14_060_20200501.png
opensrmodel/results/SR/naip/png/HR__ROI_02604__m_4110621_sw_13_060_20190711.png
opensrmodel/results/SR/naip/png/HR__ROI_03017__m_3410355_se_13_060_20200521.png
opensrmodel/results/SR/naip/png/HR__ROI_03107__m_3809920_sw_14_060_20210909.png
opensrmodel/results/SR/naip/png/HR__ROI_03117__m_4110739_sw_13_060_20190711.png
opensrmodel/results/SR/naip/png/HR__ROI_03127__m_3211246_nw_12_060_20211113.png
opensrmodel/results/SR/naip/png/HR__ROI_03578__m_3609959_nw_14_060_20210919.png
opensrmodel/results/SR/naip/png/HR__ROI_03696__m_3809959_nw_14_060_20210909.png
opensrmodel/results/SR/naip/png/HR__ROI_03715__m_2910329_sw_13_060_20201008.png
opensrmodel/results/SR/naip/png/HR__ROI_03961__m_3210835_se_12_060_20200517.png
opensrmodel/results/SR/naip/png/HR__ROI_04886__m_3509819_nw_14_060_20210906.png
opensrmodel/results/SR/naip/png/HR__ROI_05095__m_4410348_nw_13_060_20211005.png
opensrmodel/results/SR/naip/png/HR__ROI_05262__m_3410713_nw_13_060_20200516.png
opensrmodel/results/SR/naip/png/HR__ROI_05509__m_3311331_sw_12_060_20211204.png
opensrmodel/results/SR/naip/png/HR__ROI_05609__m_3809944_se_14_060_20210909.png
opensrmodel/results/SR/naip/png/HR__ROI_05839__m_3709911_sw_14_060_20190712.png
opensrmodel/results/SR/naip/png/HR__ROI_06305__m_4511313_se_12_060_20211002.png
opensrmodel/results/SR/naip/png/HR__ROI_06588__m_3410304_nw_13_060_20200521.png
opensrmodel/results/SR/naip/png/HR__ROI_06795__m_2910038_sw_14_060_20201011.png
opensrmodel/results/SR/naip/png/HR__ROI_06937__m_4509541_ne_15_060_20190808.png
opensrmodel/results/SR/naip/png/HR__ROI_07145__m_3410332_nw_13_060_20200521.png
opensrmodel/results/SR/naip/png/HR__ROI_07401__m_4110136_sw_14_060_20200729.png
opensrmodel/results/SR/naip/png/HR__ROI_07911__m_3210860_se_12_060_20200517.png
opensrmodel/results/SR/naip/png/HR__ROI_08114__m_3809933_sw_14_060_20210909.png
opensrmodel/results/SR/naip/png/HR__ROI_08463__m_3809960_ne_14_060_20210909.png
opensrmodel/results/SR/naip/png/HR__ROI_08631__m_3409947_nw_14_060_20210919.png
opensrmodel/results/SR/naip/png/HR__ROI_08872__m_4210422_sw_13_060_20190711.png
opensrmodel/results/SR/naip/png/HR__ROI_08930__m_3410719_se_13_060_20200516.png
opensrmodel/results/SR/naip/png/HR__ROI_09164__m_3210836_ne_12_060_20200517.png
opensrmodel/results/SR/naip/png/HR__ROI_09337__m_4609958_nw_14_060_20200818.png
opensrmodel/results/SR/naip/png/HR__ROI_09518__m_4309958_nw_14_060_20210917.png
opensrmodel/results/SR/naip/png/HR__ROI_10317__m_3211226_se_12_060_20211113.png
opensrmodel/results/SR/naip/png/HR__ROI_10611__m_4411335_sw_12_060_20210925.png
opensrmodel/results/SR/naip/png/HR__ROI_10807__m_4012212_nw_10_060_20200713.png
opensrmodel/results/SR/naip/png/HR__ROI_10848__m_4310032_se_14_060_20210917.png
opensrmodel/results/SR/naip/png/HR__ROI_10903__m_4809957_sw_14_060_20190715.png
opensrmodel/results/SR/naip/png/HR__ROI_11195__m_4210611_se_13_060_20190711.png
opensrmodel/results/SR/naip/png/HR__ROI_11495__m_4210652_ne_13_060_20190711.png
opensrmodel/results/SR/naip/png/HR__ROI_11533__m_3709838_ne_14_060_20190712.png
opensrmodel/results/SR/naip/png/HR__ROI_11628__m_3410947_ne_12_060_20211115.png
opensrmodel/results/SR/naip/png/HR__ROI_11746__m_4610048_sw_14_060_20200818.png
opensrmodel/results/SR/naip/png/HR__ROI_12264__m_4211664_ne_11_060_20190714.png
opensrmodel/results/SR/naip/png/HR__ROI_12389__m_3409511_sw_15_060_20210923.png
opensrmodel/results/SR/naip/png/HR__ROI_12628__m_4109961_nw_14_060_20200808.png
opensrmodel/results/SR/naip/png/HR__ROI_13050__m_3210044_sw_14_060_20200925.png
opensrmodel/results/SR/naip/png/HR__ROI_13075__m_3411354_sw_12_060_20211204.png
opensrmodel/results/SR/naip/png/HR__ROI_13496__m_4809741_ne_14_060_20210928.png
opensrmodel/results/SR/naip/png/HR__ROI_13498__m_2910331_nw_13_060_20201007.png
opensrmodel/results/SR/naip/png/HR__ROI_13507__m_4311655_ne_11_060_20190714.png
opensrmodel/results/SR/naip/png/HR__ROI_13526__m_2809723_nw_14_060_20200501.png
opensrmodel/results/SR/naip/png/HR__ROI_13742__m_2910315_nw_13_060_20201007.png
opensrmodel/results/SR/naip/png/HR__ROI_13889__m_3110514_sw_13_060_20201011.png
opensrmodel/results/SR/spain_crops/geotiff/HR__ROI_00001__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
opensrmodel/results/SR/spain_crops/geotiff/HR__ROI_00002__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
opensrmodel/results/SR/spain_crops/geotiff/HR__ROI_00003__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
opensrmodel/results/SR/spain_crops/geotiff/HR__ROI_00004__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
opensrmodel/results/SR/spain_crops/geotiff/HR__ROI_00005__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
opensrmodel/results/SR/spain_crops/geotiff/HR__ROI_00006__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
opensrmodel/results/SR/spain_crops/geotiff/HR__ROI_00007__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
opensrmodel/results/SR/spain_crops/geotiff/HR__ROI_00008__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
opensrmodel/results/SR/spain_crops/geotiff/HR__ROI_00010__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
opensrmodel/results/SR/spain_crops/geotiff/HR__ROI_00011__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
opensrmodel/results/SR/spain_crops/geotiff/HR__ROI_00012__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
opensrmodel/results/SR/spain_crops/geotiff/HR__ROI_00013__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
opensrmodel/results/SR/spain_crops/geotiff/HR__ROI_00014__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
opensrmodel/results/SR/spain_crops/geotiff/HR__ROI_00015__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
opensrmodel/results/SR/spain_crops/geotiff/HR__ROI_00016__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
opensrmodel/results/SR/spain_crops/geotiff/HR__ROI_00017__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
opensrmodel/results/SR/spain_crops/geotiff/HR__ROI_00019__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0722-1.tif
opensrmodel/results/SR/spain_crops/geotiff/HR__ROI_00023__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
opensrmodel/results/SR/spain_crops/geotiff/HR__ROI_00024__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
opensrmodel/results/SR/spain_crops/geotiff/HR__ROI_00025__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
opensrmodel/results/SR/spain_crops/geotiff/HR__ROI_00026__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
opensrmodel/results/SR/spain_crops/geotiff/HR__ROI_00027__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
opensrmodel/results/SR/spain_crops/geotiff/HR__ROI_00028__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
opensrmodel/results/SR/spain_crops/geotiff/HR__ROI_00030__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
opensrmodel/results/SR/spain_crops/geotiff/HR__ROI_00031__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
opensrmodel/results/SR/spain_crops/geotiff/HR__ROI_00032__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
opensrmodel/results/SR/spain_crops/geotiff/HR__ROI_00033__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
opensrmodel/results/SR/spain_crops/geotiff/HR__ROI_00034__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
opensrmodel/results/SR/spain_crops/png/HR__ROI_00001__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
opensrmodel/results/SR/spain_crops/png/HR__ROI_00002__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
opensrmodel/results/SR/spain_crops/png/HR__ROI_00003__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
opensrmodel/results/SR/spain_crops/png/HR__ROI_00004__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
opensrmodel/results/SR/spain_crops/png/HR__ROI_00005__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
opensrmodel/results/SR/spain_crops/png/HR__ROI_00006__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
opensrmodel/results/SR/spain_crops/png/HR__ROI_00007__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
opensrmodel/results/SR/spain_crops/png/HR__ROI_00008__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
opensrmodel/results/SR/spain_crops/png/HR__ROI_00010__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
opensrmodel/results/SR/spain_crops/png/HR__ROI_00011__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
opensrmodel/results/SR/spain_crops/png/HR__ROI_00012__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
opensrmodel/results/SR/spain_crops/png/HR__ROI_00013__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
opensrmodel/results/SR/spain_crops/png/HR__ROI_00014__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
opensrmodel/results/SR/spain_crops/png/HR__ROI_00015__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
opensrmodel/results/SR/spain_crops/png/HR__ROI_00016__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
opensrmodel/results/SR/spain_crops/png/HR__ROI_00017__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
opensrmodel/results/SR/spain_crops/png/HR__ROI_00019__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0722-1.png
opensrmodel/results/SR/spain_crops/png/HR__ROI_00023__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
opensrmodel/results/SR/spain_crops/png/HR__ROI_00024__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
opensrmodel/results/SR/spain_crops/png/HR__ROI_00025__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
opensrmodel/results/SR/spain_crops/png/HR__ROI_00026__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
opensrmodel/results/SR/spain_crops/png/HR__ROI_00027__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
opensrmodel/results/SR/spain_crops/png/HR__ROI_00028__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
opensrmodel/results/SR/spain_crops/png/HR__ROI_00030__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
opensrmodel/results/SR/spain_crops/png/HR__ROI_00031__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
opensrmodel/results/SR/spain_crops/png/HR__ROI_00032__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
opensrmodel/results/SR/spain_crops/png/HR__ROI_00033__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
opensrmodel/results/SR/spain_crops/png/HR__ROI_00034__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
opensrmodel/results/SR/spain_urban/geotiff/HR__ROI_00001__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
opensrmodel/results/SR/spain_urban/geotiff/HR__ROI_00002__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
opensrmodel/results/SR/spain_urban/geotiff/HR__ROI_00004__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
opensrmodel/results/SR/spain_urban/geotiff/HR__ROI_00006__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
opensrmodel/results/SR/spain_urban/geotiff/HR__ROI_00007__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
opensrmodel/results/SR/spain_urban/geotiff/HR__ROI_00009__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
opensrmodel/results/SR/spain_urban/geotiff/HR__ROI_00010__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
opensrmodel/results/SR/spain_urban/geotiff/HR__ROI_00011__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
opensrmodel/results/SR/spain_urban/geotiff/HR__ROI_00013__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
opensrmodel/results/SR/spain_urban/geotiff/HR__ROI_00014__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
opensrmodel/results/SR/spain_urban/geotiff/HR__ROI_00026__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
opensrmodel/results/SR/spain_urban/geotiff/HR__ROI_00027__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
opensrmodel/results/SR/spain_urban/geotiff/HR__ROI_00028__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
opensrmodel/results/SR/spain_urban/geotiff/HR__ROI_00030__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
opensrmodel/results/SR/spain_urban/geotiff/HR__ROI_00031__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
opensrmodel/results/SR/spain_urban/geotiff/HR__ROI_00032__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
opensrmodel/results/SR/spain_urban/geotiff/HR__ROI_00033__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
opensrmodel/results/SR/spain_urban/geotiff/HR__ROI_00034__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
opensrmodel/results/SR/spain_urban/geotiff/HR__ROI_00035__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
opensrmodel/results/SR/spain_urban/geotiff/HR__ROI_00036__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
opensrmodel/results/SR/spain_urban/png/HR__ROI_00001__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
opensrmodel/results/SR/spain_urban/png/HR__ROI_00002__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
opensrmodel/results/SR/spain_urban/png/HR__ROI_00004__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
opensrmodel/results/SR/spain_urban/png/HR__ROI_00006__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
opensrmodel/results/SR/spain_urban/png/HR__ROI_00007__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
opensrmodel/results/SR/spain_urban/png/HR__ROI_00009__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
opensrmodel/results/SR/spain_urban/png/HR__ROI_00010__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
opensrmodel/results/SR/spain_urban/png/HR__ROI_00011__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
opensrmodel/results/SR/spain_urban/png/HR__ROI_00013__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
opensrmodel/results/SR/spain_urban/png/HR__ROI_00014__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
opensrmodel/results/SR/spain_urban/png/HR__ROI_00026__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
opensrmodel/results/SR/spain_urban/png/HR__ROI_00027__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
opensrmodel/results/SR/spain_urban/png/HR__ROI_00028__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
opensrmodel/results/SR/spain_urban/png/HR__ROI_00030__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
opensrmodel/results/SR/spain_urban/png/HR__ROI_00031__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
opensrmodel/results/SR/spain_urban/png/HR__ROI_00032__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
opensrmodel/results/SR/spain_urban/png/HR__ROI_00033__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
opensrmodel/results/SR/spain_urban/png/HR__ROI_00034__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
opensrmodel/results/SR/spain_urban/png/HR__ROI_00035__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
opensrmodel/results/SR/spain_urban/png/HR__ROI_00036__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
opensrmodel/results/SR/spot/geotiff/ROI_0037__IMG_SPOT6_MS_201702050755046_ORT_ff6f9336-c21e-4081-c072-6038d0f53297_R1C1.tif
opensrmodel/results/SR/spot/geotiff/ROI_0050__IMG_SPOT6_MS_201702220817301_ORT_7f0f2ccb-d59c-41eb-c1f3-27856284016a_R1C1.tif
opensrmodel/results/SR/spot/geotiff/ROI_0117__IMG_SPOT6_MS_201705131607216_ORT_97c1e2b1-ebe8-49d9-c9d0-ae9370a8424a_R1C1.tif
opensrmodel/results/SR/spot/geotiff/ROI_0803__IMG_SPOT6_MS_201903020839263_ORT_fd4ee860-4321-4bb8-cb00-fbc163d2b90f_R1C1.tif
opensrmodel/results/SR/spot/geotiff/ROI_0967__IMG_SPOT6_MS_201910190953241_ORT_a0e55b71-b9f2-4fef-cfc4-8b8e375e47a5_R1C1.tif
opensrmodel/results/SR/spot/geotiff/ROI_1647__IMG_SPOT6_MS_202107211821022_ORT_6cb84e1b-0eae-4daa-cdbe-9a27b94d2244_R1C1.tif
opensrmodel/results/SR/spot/geotiff/ROI_2603__IMG_SPOT7_MS_201907190724338_ORT_2abb8cd4-5a93-4c58-ccb3-697c70f52dce_R1C1.tif
opensrmodel/results/SR/spot/geotiff/ROI_3126__IMG_SPOT7_MS_202011250946543_ORT_aa60c730-be23-4286-c20f-2629d82909ca_R1C1.tif
opensrmodel/results/SR/spot/geotiff/ROI_3171__IMG_SPOT7_MS_202101070832438_ORT_821c8f18-7eb9-4438-c475-4a193446fb48_R1C1.tif
opensrmodel/results/SR/spot/png/ROI_0037__IMG_SPOT6_MS_201702050755046_ORT_ff6f9336-c21e-4081-c072-6038d0f53297_R1C1.png
opensrmodel/results/SR/spot/png/ROI_0050__IMG_SPOT6_MS_201702220817301_ORT_7f0f2ccb-d59c-41eb-c1f3-27856284016a_R1C1.png
opensrmodel/results/SR/spot/png/ROI_0117__IMG_SPOT6_MS_201705131607216_ORT_97c1e2b1-ebe8-49d9-c9d0-ae9370a8424a_R1C1.png
opensrmodel/results/SR/spot/png/ROI_0803__IMG_SPOT6_MS_201903020839263_ORT_fd4ee860-4321-4bb8-cb00-fbc163d2b90f_R1C1.png
opensrmodel/results/SR/spot/png/ROI_0967__IMG_SPOT6_MS_201910190953241_ORT_a0e55b71-b9f2-4fef-cfc4-8b8e375e47a5_R1C1.png
opensrmodel/results/SR/spot/png/ROI_1647__IMG_SPOT6_MS_202107211821022_ORT_6cb84e1b-0eae-4daa-cdbe-9a27b94d2244_R1C1.png
opensrmodel/results/SR/spot/png/ROI_2603__IMG_SPOT7_MS_201907190724338_ORT_2abb8cd4-5a93-4c58-ccb3-697c70f52dce_R1C1.png
opensrmodel/results/SR/spot/png/ROI_3126__IMG_SPOT7_MS_202011250946543_ORT_aa60c730-be23-4286-c20f-2629d82909ca_R1C1.png
opensrmodel/results/SR/spot/png/ROI_3171__IMG_SPOT7_MS_202101070832438_ORT_821c8f18-7eb9-4438-c475-4a193446fb48_R1C1.png
opensrmodel/results/SR/venus/geotiff/ROI_0005.tif
opensrmodel/results/SR/venus/geotiff/ROI_0006.tif
opensrmodel/results/SR/venus/geotiff/ROI_0007.tif
opensrmodel/results/SR/venus/geotiff/ROI_0008.tif
opensrmodel/results/SR/venus/geotiff/ROI_0009.tif
opensrmodel/results/SR/venus/geotiff/ROI_0010.tif
opensrmodel/results/SR/venus/geotiff/ROI_0011.tif
opensrmodel/results/SR/venus/geotiff/ROI_0015.tif
opensrmodel/results/SR/venus/geotiff/ROI_0017.tif
opensrmodel/results/SR/venus/geotiff/ROI_0018.tif
opensrmodel/results/SR/venus/geotiff/ROI_0019.tif
opensrmodel/results/SR/venus/geotiff/ROI_0020.tif
opensrmodel/results/SR/venus/geotiff/ROI_0021.tif
opensrmodel/results/SR/venus/geotiff/ROI_0023.tif
opensrmodel/results/SR/venus/geotiff/ROI_0024.tif
opensrmodel/results/SR/venus/geotiff/ROI_0025.tif
opensrmodel/results/SR/venus/geotiff/ROI_0026.tif
opensrmodel/results/SR/venus/geotiff/ROI_0027.tif
opensrmodel/results/SR/venus/geotiff/ROI_0029.tif
opensrmodel/results/SR/venus/geotiff/ROI_0030.tif
opensrmodel/results/SR/venus/geotiff/ROI_0031.tif
opensrmodel/results/SR/venus/geotiff/ROI_0032.tif
opensrmodel/results/SR/venus/geotiff/ROI_0033.tif
opensrmodel/results/SR/venus/geotiff/ROI_0034.tif
opensrmodel/results/SR/venus/geotiff/ROI_0036.tif
opensrmodel/results/SR/venus/geotiff/ROI_0037.tif
opensrmodel/results/SR/venus/geotiff/ROI_0038.tif
opensrmodel/results/SR/venus/geotiff/ROI_0040.tif
opensrmodel/results/SR/venus/geotiff/ROI_0041.tif
opensrmodel/results/SR/venus/geotiff/ROI_0042.tif
opensrmodel/results/SR/venus/geotiff/ROI_0045.tif
opensrmodel/results/SR/venus/geotiff/ROI_0046.tif
opensrmodel/results/SR/venus/geotiff/ROI_0049.tif
opensrmodel/results/SR/venus/geotiff/ROI_0050.tif
opensrmodel/results/SR/venus/geotiff/ROI_0051.tif
opensrmodel/results/SR/venus/geotiff/ROI_0055.tif
opensrmodel/results/SR/venus/geotiff/ROI_0059.tif
opensrmodel/results/SR/venus/geotiff/ROI_0061.tif
opensrmodel/results/SR/venus/geotiff/ROI_0063.tif
opensrmodel/results/SR/venus/geotiff/ROI_0066.tif
opensrmodel/results/SR/venus/geotiff/ROI_0067.tif
opensrmodel/results/SR/venus/geotiff/ROI_0068.tif
opensrmodel/results/SR/venus/geotiff/ROI_0069.tif
opensrmodel/results/SR/venus/geotiff/ROI_0072.tif
opensrmodel/results/SR/venus/geotiff/ROI_0073.tif
opensrmodel/results/SR/venus/geotiff/ROI_0074.tif
opensrmodel/results/SR/venus/geotiff/ROI_0075.tif
opensrmodel/results/SR/venus/geotiff/ROI_0077.tif
opensrmodel/results/SR/venus/geotiff/ROI_0078.tif
opensrmodel/results/SR/venus/geotiff/ROI_0082.tif
opensrmodel/results/SR/venus/geotiff/ROI_0085.tif
opensrmodel/results/SR/venus/geotiff/ROI_0089.tif
opensrmodel/results/SR/venus/geotiff/ROI_0098.tif
opensrmodel/results/SR/venus/geotiff/ROI_0111.tif
opensrmodel/results/SR/venus/geotiff/ROI_0112.tif
opensrmodel/results/SR/venus/geotiff/ROI_0115.tif
opensrmodel/results/SR/venus/geotiff/ROI_0116.tif
opensrmodel/results/SR/venus/geotiff/ROI_0117.tif
opensrmodel/results/SR/venus/geotiff/ROI_0118.tif
opensrmodel/results/SR/venus/png/ROI_0005.png
opensrmodel/results/SR/venus/png/ROI_0006.png
opensrmodel/results/SR/venus/png/ROI_0007.png
opensrmodel/results/SR/venus/png/ROI_0008.png
opensrmodel/results/SR/venus/png/ROI_0009.png
opensrmodel/results/SR/venus/png/ROI_0010.png
opensrmodel/results/SR/venus/png/ROI_0011.png
opensrmodel/results/SR/venus/png/ROI_0015.png
opensrmodel/results/SR/venus/png/ROI_0017.png
opensrmodel/results/SR/venus/png/ROI_0018.png
opensrmodel/results/SR/venus/png/ROI_0019.png
opensrmodel/results/SR/venus/png/ROI_0020.png
opensrmodel/results/SR/venus/png/ROI_0021.png
opensrmodel/results/SR/venus/png/ROI_0023.png
opensrmodel/results/SR/venus/png/ROI_0024.png
opensrmodel/results/SR/venus/png/ROI_0025.png
opensrmodel/results/SR/venus/png/ROI_0026.png
opensrmodel/results/SR/venus/png/ROI_0027.png
opensrmodel/results/SR/venus/png/ROI_0029.png
opensrmodel/results/SR/venus/png/ROI_0030.png
opensrmodel/results/SR/venus/png/ROI_0031.png
opensrmodel/results/SR/venus/png/ROI_0032.png
opensrmodel/results/SR/venus/png/ROI_0033.png
opensrmodel/results/SR/venus/png/ROI_0034.png
opensrmodel/results/SR/venus/png/ROI_0036.png
opensrmodel/results/SR/venus/png/ROI_0037.png
opensrmodel/results/SR/venus/png/ROI_0038.png
opensrmodel/results/SR/venus/png/ROI_0040.png
opensrmodel/results/SR/venus/png/ROI_0041.png
opensrmodel/results/SR/venus/png/ROI_0042.png
opensrmodel/results/SR/venus/png/ROI_0045.png
opensrmodel/results/SR/venus/png/ROI_0046.png
opensrmodel/results/SR/venus/png/ROI_0049.png
opensrmodel/results/SR/venus/png/ROI_0050.png
opensrmodel/results/SR/venus/png/ROI_0051.png
opensrmodel/results/SR/venus/png/ROI_0055.png
opensrmodel/results/SR/venus/png/ROI_0059.png
opensrmodel/results/SR/venus/png/ROI_0061.png
opensrmodel/results/SR/venus/png/ROI_0063.png
opensrmodel/results/SR/venus/png/ROI_0066.png
opensrmodel/results/SR/venus/png/ROI_0067.png
opensrmodel/results/SR/venus/png/ROI_0068.png
opensrmodel/results/SR/venus/png/ROI_0069.png
opensrmodel/results/SR/venus/png/ROI_0072.png
opensrmodel/results/SR/venus/png/ROI_0073.png
opensrmodel/results/SR/venus/png/ROI_0074.png
opensrmodel/results/SR/venus/png/ROI_0075.png
opensrmodel/results/SR/venus/png/ROI_0077.png
opensrmodel/results/SR/venus/png/ROI_0078.png
opensrmodel/results/SR/venus/png/ROI_0082.png
opensrmodel/results/SR/venus/png/ROI_0085.png
opensrmodel/results/SR/venus/png/ROI_0089.png
opensrmodel/results/SR/venus/png/ROI_0098.png
opensrmodel/results/SR/venus/png/ROI_0111.png
opensrmodel/results/SR/venus/png/ROI_0112.png
opensrmodel/results/SR/venus/png/ROI_0115.png
opensrmodel/results/SR/venus/png/ROI_0116.png
opensrmodel/results/SR/venus/png/ROI_0117.png
opensrmodel/results/SR/venus/png/ROI_0118.png
opensrmodel/run.py
opensrmodel/utils.py
opensrmodel/weights/opensr_10m_v4_v5.ckpt
s2dr3/results/SR/naip/geotiff/HR__ROI_00006__m_4411338_ne_12_060_20210917.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_00270__m_3809943_sw_14_060_20210909.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_00319__m_3609931_se_14_060_20190627.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_00399__m_3809910_sw_14_060_20210909.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_00438__m_3409938_ne_14_060_20210919.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_00456__m_3510353_sw_13_060_20200521.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_00565__m_3410123_se_14_060_20200828.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_01566__m_3211262_nw_12_060_20211113.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_01619__m_4211110_ne_12_060_20190926.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_01750__m_4011251_se_12_060_20210925.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_02524__m_2709848_sw_14_060_20200501.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_02604__m_4110621_sw_13_060_20190711.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_03017__m_3410355_se_13_060_20200521.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_03107__m_3809920_sw_14_060_20210909.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_03117__m_4110739_sw_13_060_20190711.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_03127__m_3211246_nw_12_060_20211113.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_03578__m_3609959_nw_14_060_20210919.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_03696__m_3809959_nw_14_060_20210909.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_03715__m_2910329_sw_13_060_20201008.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_03961__m_3210835_se_12_060_20200517.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_04886__m_3509819_nw_14_060_20210906.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_05095__m_4410348_nw_13_060_20211005.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_05262__m_3410713_nw_13_060_20200516.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_05509__m_3311331_sw_12_060_20211204.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_05609__m_3809944_se_14_060_20210909.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_05839__m_3709911_sw_14_060_20190712.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_06305__m_4511313_se_12_060_20211002.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_06588__m_3410304_nw_13_060_20200521.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_06795__m_2910038_sw_14_060_20201011.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_06937__m_4509541_ne_15_060_20190808.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_07145__m_3410332_nw_13_060_20200521.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_07401__m_4110136_sw_14_060_20200729.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_07911__m_3210860_se_12_060_20200517.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_08114__m_3809933_sw_14_060_20210909.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_08463__m_3809960_ne_14_060_20210909.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_08631__m_3409947_nw_14_060_20210919.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_08872__m_4210422_sw_13_060_20190711.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_08930__m_3410719_se_13_060_20200516.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_09164__m_3210836_ne_12_060_20200517.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_09337__m_4609958_nw_14_060_20200818.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_09518__m_4309958_nw_14_060_20210917.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_10317__m_3211226_se_12_060_20211113.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_10611__m_4411335_sw_12_060_20210925.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_10807__m_4012212_nw_10_060_20200713.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_10848__m_4310032_se_14_060_20210917.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_10903__m_4809957_sw_14_060_20190715.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_11195__m_4210611_se_13_060_20190711.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_11495__m_4210652_ne_13_060_20190711.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_11533__m_3709838_ne_14_060_20190712.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_11628__m_3410947_ne_12_060_20211115.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_11746__m_4610048_sw_14_060_20200818.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_12264__m_4211664_ne_11_060_20190714.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_12389__m_3409511_sw_15_060_20210923.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_12628__m_4109961_nw_14_060_20200808.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_13050__m_3210044_sw_14_060_20200925.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_13075__m_3411354_sw_12_060_20211204.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_13496__m_4809741_ne_14_060_20210928.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_13498__m_2910331_nw_13_060_20201007.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_13507__m_4311655_ne_11_060_20190714.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_13526__m_2809723_nw_14_060_20200501.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_13742__m_2910315_nw_13_060_20201007.tif
s2dr3/results/SR/naip/geotiff/HR__ROI_13889__m_3110514_sw_13_060_20201011.tif
s2dr3/results/SR/naip/png/HR__ROI_00006__m_4411338_ne_12_060_20210917.png
s2dr3/results/SR/naip/png/HR__ROI_00270__m_3809943_sw_14_060_20210909.png
s2dr3/results/SR/naip/png/HR__ROI_00319__m_3609931_se_14_060_20190627.png
s2dr3/results/SR/naip/png/HR__ROI_00399__m_3809910_sw_14_060_20210909.png
s2dr3/results/SR/naip/png/HR__ROI_00438__m_3409938_ne_14_060_20210919.png
s2dr3/results/SR/naip/png/HR__ROI_00456__m_3510353_sw_13_060_20200521.png
s2dr3/results/SR/naip/png/HR__ROI_00565__m_3410123_se_14_060_20200828.png
s2dr3/results/SR/naip/png/HR__ROI_01566__m_3211262_nw_12_060_20211113.png
s2dr3/results/SR/naip/png/HR__ROI_01619__m_4211110_ne_12_060_20190926.png
s2dr3/results/SR/naip/png/HR__ROI_01750__m_4011251_se_12_060_20210925.png
s2dr3/results/SR/naip/png/HR__ROI_02524__m_2709848_sw_14_060_20200501.png
s2dr3/results/SR/naip/png/HR__ROI_02604__m_4110621_sw_13_060_20190711.png
s2dr3/results/SR/naip/png/HR__ROI_03017__m_3410355_se_13_060_20200521.png
s2dr3/results/SR/naip/png/HR__ROI_03107__m_3809920_sw_14_060_20210909.png
s2dr3/results/SR/naip/png/HR__ROI_03117__m_4110739_sw_13_060_20190711.png
s2dr3/results/SR/naip/png/HR__ROI_03127__m_3211246_nw_12_060_20211113.png
s2dr3/results/SR/naip/png/HR__ROI_03578__m_3609959_nw_14_060_20210919.png
s2dr3/results/SR/naip/png/HR__ROI_03696__m_3809959_nw_14_060_20210909.png
s2dr3/results/SR/naip/png/HR__ROI_03715__m_2910329_sw_13_060_20201008.png
s2dr3/results/SR/naip/png/HR__ROI_03961__m_3210835_se_12_060_20200517.png
s2dr3/results/SR/naip/png/HR__ROI_04886__m_3509819_nw_14_060_20210906.png
s2dr3/results/SR/naip/png/HR__ROI_05095__m_4410348_nw_13_060_20211005.png
s2dr3/results/SR/naip/png/HR__ROI_05262__m_3410713_nw_13_060_20200516.png
s2dr3/results/SR/naip/png/HR__ROI_05509__m_3311331_sw_12_060_20211204.png
s2dr3/results/SR/naip/png/HR__ROI_05609__m_3809944_se_14_060_20210909.png
s2dr3/results/SR/naip/png/HR__ROI_05839__m_3709911_sw_14_060_20190712.png
s2dr3/results/SR/naip/png/HR__ROI_06305__m_4511313_se_12_060_20211002.png
s2dr3/results/SR/naip/png/HR__ROI_06588__m_3410304_nw_13_060_20200521.png
s2dr3/results/SR/naip/png/HR__ROI_06795__m_2910038_sw_14_060_20201011.png
s2dr3/results/SR/naip/png/HR__ROI_06937__m_4509541_ne_15_060_20190808.png
s2dr3/results/SR/naip/png/HR__ROI_07145__m_3410332_nw_13_060_20200521.png
s2dr3/results/SR/naip/png/HR__ROI_07401__m_4110136_sw_14_060_20200729.png
s2dr3/results/SR/naip/png/HR__ROI_07911__m_3210860_se_12_060_20200517.png
s2dr3/results/SR/naip/png/HR__ROI_08114__m_3809933_sw_14_060_20210909.png
s2dr3/results/SR/naip/png/HR__ROI_08463__m_3809960_ne_14_060_20210909.png
s2dr3/results/SR/naip/png/HR__ROI_08631__m_3409947_nw_14_060_20210919.png
s2dr3/results/SR/naip/png/HR__ROI_08872__m_4210422_sw_13_060_20190711.png
s2dr3/results/SR/naip/png/HR__ROI_08930__m_3410719_se_13_060_20200516.png
s2dr3/results/SR/naip/png/HR__ROI_09164__m_3210836_ne_12_060_20200517.png
s2dr3/results/SR/naip/png/HR__ROI_09337__m_4609958_nw_14_060_20200818.png
s2dr3/results/SR/naip/png/HR__ROI_09518__m_4309958_nw_14_060_20210917.png
s2dr3/results/SR/naip/png/HR__ROI_10317__m_3211226_se_12_060_20211113.png
s2dr3/results/SR/naip/png/HR__ROI_10611__m_4411335_sw_12_060_20210925.png
s2dr3/results/SR/naip/png/HR__ROI_10807__m_4012212_nw_10_060_20200713.png
s2dr3/results/SR/naip/png/HR__ROI_10848__m_4310032_se_14_060_20210917.png
s2dr3/results/SR/naip/png/HR__ROI_10903__m_4809957_sw_14_060_20190715.png
s2dr3/results/SR/naip/png/HR__ROI_11195__m_4210611_se_13_060_20190711.png
s2dr3/results/SR/naip/png/HR__ROI_11495__m_4210652_ne_13_060_20190711.png
s2dr3/results/SR/naip/png/HR__ROI_11533__m_3709838_ne_14_060_20190712.png
s2dr3/results/SR/naip/png/HR__ROI_11628__m_3410947_ne_12_060_20211115.png
s2dr3/results/SR/naip/png/HR__ROI_11746__m_4610048_sw_14_060_20200818.png
s2dr3/results/SR/naip/png/HR__ROI_12264__m_4211664_ne_11_060_20190714.png
s2dr3/results/SR/naip/png/HR__ROI_12389__m_3409511_sw_15_060_20210923.png
s2dr3/results/SR/naip/png/HR__ROI_12628__m_4109961_nw_14_060_20200808.png
s2dr3/results/SR/naip/png/HR__ROI_13050__m_3210044_sw_14_060_20200925.png
s2dr3/results/SR/naip/png/HR__ROI_13075__m_3411354_sw_12_060_20211204.png
s2dr3/results/SR/naip/png/HR__ROI_13496__m_4809741_ne_14_060_20210928.png
s2dr3/results/SR/naip/png/HR__ROI_13498__m_2910331_nw_13_060_20201007.png
s2dr3/results/SR/naip/png/HR__ROI_13507__m_4311655_ne_11_060_20190714.png
s2dr3/results/SR/naip/png/HR__ROI_13526__m_2809723_nw_14_060_20200501.png
s2dr3/results/SR/naip/png/HR__ROI_13742__m_2910315_nw_13_060_20201007.png
s2dr3/results/SR/naip/png/HR__ROI_13889__m_3110514_sw_13_060_20201011.png
s2dr3/results/SR/naip/results.csv
s2dr3/results/SR/s2dr3.zip
s2dr3/results/SR/spain_crops/geotiff/HR__ROI_00001__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
s2dr3/results/SR/spain_crops/geotiff/HR__ROI_00002__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
s2dr3/results/SR/spain_crops/geotiff/HR__ROI_00003__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
s2dr3/results/SR/spain_crops/geotiff/HR__ROI_00004__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
s2dr3/results/SR/spain_crops/geotiff/HR__ROI_00005__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
s2dr3/results/SR/spain_crops/geotiff/HR__ROI_00006__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
s2dr3/results/SR/spain_crops/geotiff/HR__ROI_00007__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
s2dr3/results/SR/spain_crops/geotiff/HR__ROI_00008__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
s2dr3/results/SR/spain_crops/geotiff/HR__ROI_00010__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
s2dr3/results/SR/spain_crops/geotiff/HR__ROI_00011__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
s2dr3/results/SR/spain_crops/geotiff/HR__ROI_00012__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
s2dr3/results/SR/spain_crops/geotiff/HR__ROI_00013__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
s2dr3/results/SR/spain_crops/geotiff/HR__ROI_00014__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
s2dr3/results/SR/spain_crops/geotiff/HR__ROI_00015__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
s2dr3/results/SR/spain_crops/geotiff/HR__ROI_00016__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
s2dr3/results/SR/spain_crops/geotiff/HR__ROI_00017__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
s2dr3/results/SR/spain_crops/geotiff/HR__ROI_00019__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0722-1.tif
s2dr3/results/SR/spain_crops/geotiff/HR__ROI_00023__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
s2dr3/results/SR/spain_crops/geotiff/HR__ROI_00024__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
s2dr3/results/SR/spain_crops/geotiff/HR__ROI_00025__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
s2dr3/results/SR/spain_crops/geotiff/HR__ROI_00026__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
s2dr3/results/SR/spain_crops/geotiff/HR__ROI_00027__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
s2dr3/results/SR/spain_crops/geotiff/HR__ROI_00028__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
s2dr3/results/SR/spain_crops/geotiff/HR__ROI_00030__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
s2dr3/results/SR/spain_crops/geotiff/HR__ROI_00031__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
s2dr3/results/SR/spain_crops/geotiff/HR__ROI_00032__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
s2dr3/results/SR/spain_crops/geotiff/HR__ROI_00033__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
s2dr3/results/SR/spain_crops/geotiff/HR__ROI_00034__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
s2dr3/results/SR/spain_crops/png/HR__ROI_00001__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
s2dr3/results/SR/spain_crops/png/HR__ROI_00002__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
s2dr3/results/SR/spain_crops/png/HR__ROI_00003__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
s2dr3/results/SR/spain_crops/png/HR__ROI_00004__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
s2dr3/results/SR/spain_crops/png/HR__ROI_00005__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
s2dr3/results/SR/spain_crops/png/HR__ROI_00006__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
s2dr3/results/SR/spain_crops/png/HR__ROI_00007__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
s2dr3/results/SR/spain_crops/png/HR__ROI_00008__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
s2dr3/results/SR/spain_crops/png/HR__ROI_00010__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
s2dr3/results/SR/spain_crops/png/HR__ROI_00011__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
s2dr3/results/SR/spain_crops/png/HR__ROI_00012__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
s2dr3/results/SR/spain_crops/png/HR__ROI_00013__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
s2dr3/results/SR/spain_crops/png/HR__ROI_00014__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
s2dr3/results/SR/spain_crops/png/HR__ROI_00015__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
s2dr3/results/SR/spain_crops/png/HR__ROI_00016__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
s2dr3/results/SR/spain_crops/png/HR__ROI_00017__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
s2dr3/results/SR/spain_crops/png/HR__ROI_00019__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0722-1.png
s2dr3/results/SR/spain_crops/png/HR__ROI_00023__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
s2dr3/results/SR/spain_crops/png/HR__ROI_00024__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
s2dr3/results/SR/spain_crops/png/HR__ROI_00025__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
s2dr3/results/SR/spain_crops/png/HR__ROI_00026__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
s2dr3/results/SR/spain_crops/png/HR__ROI_00027__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
s2dr3/results/SR/spain_crops/png/HR__ROI_00028__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
s2dr3/results/SR/spain_crops/png/HR__ROI_00030__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
s2dr3/results/SR/spain_crops/png/HR__ROI_00031__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
s2dr3/results/SR/spain_crops/png/HR__ROI_00032__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
s2dr3/results/SR/spain_crops/png/HR__ROI_00033__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
s2dr3/results/SR/spain_crops/png/HR__ROI_00034__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
s2dr3/results/SR/spain_urban/geotiff/HR__ROI_00001__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
s2dr3/results/SR/spain_urban/geotiff/HR__ROI_00002__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
s2dr3/results/SR/spain_urban/geotiff/HR__ROI_00004__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
s2dr3/results/SR/spain_urban/geotiff/HR__ROI_00006__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
s2dr3/results/SR/spain_urban/geotiff/HR__ROI_00007__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
s2dr3/results/SR/spain_urban/geotiff/HR__ROI_00009__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
s2dr3/results/SR/spain_urban/geotiff/HR__ROI_00010__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
s2dr3/results/SR/spain_urban/geotiff/HR__ROI_00011__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
s2dr3/results/SR/spain_urban/geotiff/HR__ROI_00013__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
s2dr3/results/SR/spain_urban/geotiff/HR__ROI_00014__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
s2dr3/results/SR/spain_urban/geotiff/HR__ROI_00026__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
s2dr3/results/SR/spain_urban/geotiff/HR__ROI_00027__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
s2dr3/results/SR/spain_urban/geotiff/HR__ROI_00028__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
s2dr3/results/SR/spain_urban/geotiff/HR__ROI_00030__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
s2dr3/results/SR/spain_urban/geotiff/HR__ROI_00031__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
s2dr3/results/SR/spain_urban/geotiff/HR__ROI_00032__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
s2dr3/results/SR/spain_urban/geotiff/HR__ROI_00033__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
s2dr3/results/SR/spain_urban/geotiff/HR__ROI_00034__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
s2dr3/results/SR/spain_urban/geotiff/HR__ROI_00035__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
s2dr3/results/SR/spain_urban/geotiff/HR__ROI_00036__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
s2dr3/results/SR/spain_urban/png/HR__ROI_00001__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
s2dr3/results/SR/spain_urban/png/HR__ROI_00002__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
s2dr3/results/SR/spain_urban/png/HR__ROI_00004__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
s2dr3/results/SR/spain_urban/png/HR__ROI_00006__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
s2dr3/results/SR/spain_urban/png/HR__ROI_00007__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
s2dr3/results/SR/spain_urban/png/HR__ROI_00009__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
s2dr3/results/SR/spain_urban/png/HR__ROI_00010__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
s2dr3/results/SR/spain_urban/png/HR__ROI_00011__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
s2dr3/results/SR/spain_urban/png/HR__ROI_00013__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
s2dr3/results/SR/spain_urban/png/HR__ROI_00014__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
s2dr3/results/SR/spain_urban/png/HR__ROI_00026__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
s2dr3/results/SR/spain_urban/png/HR__ROI_00027__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
s2dr3/results/SR/spain_urban/png/HR__ROI_00028__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
s2dr3/results/SR/spain_urban/png/HR__ROI_00030__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
s2dr3/results/SR/spain_urban/png/HR__ROI_00031__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
s2dr3/results/SR/spain_urban/png/HR__ROI_00032__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
s2dr3/results/SR/spain_urban/png/HR__ROI_00033__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
s2dr3/results/SR/spain_urban/png/HR__ROI_00034__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
s2dr3/results/SR/spain_urban/png/HR__ROI_00035__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
s2dr3/results/SR/spain_urban/png/HR__ROI_00036__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
s2dr3/results/SR/spot/geotiff/ROI_0037__IMG_SPOT6_MS_201702050755046_ORT_ff6f9336-c21e-4081-c072-6038d0f53297_R1C1.tif
s2dr3/results/SR/spot/geotiff/ROI_0050__IMG_SPOT6_MS_201702220817301_ORT_7f0f2ccb-d59c-41eb-c1f3-27856284016a_R1C1.tif
s2dr3/results/SR/spot/geotiff/ROI_0117__IMG_SPOT6_MS_201705131607216_ORT_97c1e2b1-ebe8-49d9-c9d0-ae9370a8424a_R1C1.tif
s2dr3/results/SR/spot/geotiff/ROI_0803__IMG_SPOT6_MS_201903020839263_ORT_fd4ee860-4321-4bb8-cb00-fbc163d2b90f_R1C1.tif
s2dr3/results/SR/spot/geotiff/ROI_0967__IMG_SPOT6_MS_201910190953241_ORT_a0e55b71-b9f2-4fef-cfc4-8b8e375e47a5_R1C1.tif
s2dr3/results/SR/spot/geotiff/ROI_1647__IMG_SPOT6_MS_202107211821022_ORT_6cb84e1b-0eae-4daa-cdbe-9a27b94d2244_R1C1.tif
s2dr3/results/SR/spot/geotiff/ROI_2603__IMG_SPOT7_MS_201907190724338_ORT_2abb8cd4-5a93-4c58-ccb3-697c70f52dce_R1C1.tif
s2dr3/results/SR/spot/geotiff/ROI_3126__IMG_SPOT7_MS_202011250946543_ORT_aa60c730-be23-4286-c20f-2629d82909ca_R1C1.tif
s2dr3/results/SR/spot/geotiff/ROI_3171__IMG_SPOT7_MS_202101070832438_ORT_821c8f18-7eb9-4438-c475-4a193446fb48_R1C1.tif
s2dr3/results/SR/spot/png/ROI_0037__IMG_SPOT6_MS_201702050755046_ORT_ff6f9336-c21e-4081-c072-6038d0f53297_R1C1.png
s2dr3/results/SR/spot/png/ROI_0050__IMG_SPOT6_MS_201702220817301_ORT_7f0f2ccb-d59c-41eb-c1f3-27856284016a_R1C1.png
s2dr3/results/SR/spot/png/ROI_0117__IMG_SPOT6_MS_201705131607216_ORT_97c1e2b1-ebe8-49d9-c9d0-ae9370a8424a_R1C1.png
s2dr3/results/SR/spot/png/ROI_0803__IMG_SPOT6_MS_201903020839263_ORT_fd4ee860-4321-4bb8-cb00-fbc163d2b90f_R1C1.png
s2dr3/results/SR/spot/png/ROI_0967__IMG_SPOT6_MS_201910190953241_ORT_a0e55b71-b9f2-4fef-cfc4-8b8e375e47a5_R1C1.png
s2dr3/results/SR/spot/png/ROI_1647__IMG_SPOT6_MS_202107211821022_ORT_6cb84e1b-0eae-4daa-cdbe-9a27b94d2244_R1C1.png
s2dr3/results/SR/spot/png/ROI_2603__IMG_SPOT7_MS_201907190724338_ORT_2abb8cd4-5a93-4c58-ccb3-697c70f52dce_R1C1.png
s2dr3/results/SR/spot/png/ROI_3126__IMG_SPOT7_MS_202011250946543_ORT_aa60c730-be23-4286-c20f-2629d82909ca_R1C1.png
s2dr3/results/SR/spot/png/ROI_3171__IMG_SPOT7_MS_202101070832438_ORT_821c8f18-7eb9-4438-c475-4a193446fb48_R1C1.png
s2dr3/results/SR/venus/geotiff/ROI_0005.tif
s2dr3/results/SR/venus/geotiff/ROI_0006.tif
s2dr3/results/SR/venus/geotiff/ROI_0007.tif
s2dr3/results/SR/venus/geotiff/ROI_0008.tif
s2dr3/results/SR/venus/geotiff/ROI_0009.tif
s2dr3/results/SR/venus/geotiff/ROI_0010.tif
s2dr3/results/SR/venus/geotiff/ROI_0011.tif
s2dr3/results/SR/venus/geotiff/ROI_0015.tif
s2dr3/results/SR/venus/geotiff/ROI_0017.tif
s2dr3/results/SR/venus/geotiff/ROI_0018.tif
s2dr3/results/SR/venus/geotiff/ROI_0019.tif
s2dr3/results/SR/venus/geotiff/ROI_0020.tif
s2dr3/results/SR/venus/geotiff/ROI_0021.tif
s2dr3/results/SR/venus/geotiff/ROI_0023.tif
s2dr3/results/SR/venus/geotiff/ROI_0024.tif
s2dr3/results/SR/venus/geotiff/ROI_0025.tif
s2dr3/results/SR/venus/geotiff/ROI_0026.tif
s2dr3/results/SR/venus/geotiff/ROI_0027.tif
s2dr3/results/SR/venus/geotiff/ROI_0029.tif
s2dr3/results/SR/venus/geotiff/ROI_0030.tif
s2dr3/results/SR/venus/geotiff/ROI_0031.tif
s2dr3/results/SR/venus/geotiff/ROI_0032.tif
s2dr3/results/SR/venus/geotiff/ROI_0033.tif
s2dr3/results/SR/venus/geotiff/ROI_0034.tif
s2dr3/results/SR/venus/geotiff/ROI_0036.tif
s2dr3/results/SR/venus/geotiff/ROI_0037.tif
s2dr3/results/SR/venus/geotiff/ROI_0038.tif
s2dr3/results/SR/venus/geotiff/ROI_0040.tif
s2dr3/results/SR/venus/geotiff/ROI_0041.tif
s2dr3/results/SR/venus/geotiff/ROI_0042.tif
s2dr3/results/SR/venus/geotiff/ROI_0045.tif
s2dr3/results/SR/venus/geotiff/ROI_0046.tif
s2dr3/results/SR/venus/geotiff/ROI_0049.tif
s2dr3/results/SR/venus/geotiff/ROI_0050.tif
s2dr3/results/SR/venus/geotiff/ROI_0051.tif
s2dr3/results/SR/venus/geotiff/ROI_0055.tif
s2dr3/results/SR/venus/geotiff/ROI_0059.tif
s2dr3/results/SR/venus/geotiff/ROI_0061.tif
s2dr3/results/SR/venus/geotiff/ROI_0063.tif
s2dr3/results/SR/venus/geotiff/ROI_0066.tif
s2dr3/results/SR/venus/geotiff/ROI_0067.tif
s2dr3/results/SR/venus/geotiff/ROI_0068.tif
s2dr3/results/SR/venus/geotiff/ROI_0069.tif
s2dr3/results/SR/venus/geotiff/ROI_0072.tif
s2dr3/results/SR/venus/geotiff/ROI_0073.tif
s2dr3/results/SR/venus/geotiff/ROI_0074.tif
s2dr3/results/SR/venus/geotiff/ROI_0075.tif
s2dr3/results/SR/venus/geotiff/ROI_0077.tif
s2dr3/results/SR/venus/geotiff/ROI_0078.tif
s2dr3/results/SR/venus/geotiff/ROI_0082.tif
s2dr3/results/SR/venus/geotiff/ROI_0085.tif
s2dr3/results/SR/venus/geotiff/ROI_0089.tif
s2dr3/results/SR/venus/geotiff/ROI_0098.tif
s2dr3/results/SR/venus/geotiff/ROI_0111.tif
s2dr3/results/SR/venus/geotiff/ROI_0112.tif
s2dr3/results/SR/venus/geotiff/ROI_0115.tif
s2dr3/results/SR/venus/geotiff/ROI_0116.tif
s2dr3/results/SR/venus/geotiff/ROI_0117.tif
s2dr3/results/SR/venus/geotiff/ROI_0118.tif
s2dr3/results/SR/venus/png/ROI_0005.png
s2dr3/results/SR/venus/png/ROI_0006.png
s2dr3/results/SR/venus/png/ROI_0007.png
s2dr3/results/SR/venus/png/ROI_0008.png
s2dr3/results/SR/venus/png/ROI_0009.png
s2dr3/results/SR/venus/png/ROI_0010.png
s2dr3/results/SR/venus/png/ROI_0011.png
s2dr3/results/SR/venus/png/ROI_0015.png
s2dr3/results/SR/venus/png/ROI_0017.png
s2dr3/results/SR/venus/png/ROI_0018.png
s2dr3/results/SR/venus/png/ROI_0019.png
s2dr3/results/SR/venus/png/ROI_0020.png
s2dr3/results/SR/venus/png/ROI_0021.png
s2dr3/results/SR/venus/png/ROI_0023.png
s2dr3/results/SR/venus/png/ROI_0024.png
s2dr3/results/SR/venus/png/ROI_0025.png
s2dr3/results/SR/venus/png/ROI_0026.png
s2dr3/results/SR/venus/png/ROI_0027.png
s2dr3/results/SR/venus/png/ROI_0029.png
s2dr3/results/SR/venus/png/ROI_0030.png
s2dr3/results/SR/venus/png/ROI_0031.png
s2dr3/results/SR/venus/png/ROI_0032.png
s2dr3/results/SR/venus/png/ROI_0033.png
s2dr3/results/SR/venus/png/ROI_0034.png
s2dr3/results/SR/venus/png/ROI_0036.png
s2dr3/results/SR/venus/png/ROI_0037.png
s2dr3/results/SR/venus/png/ROI_0038.png
s2dr3/results/SR/venus/png/ROI_0040.png
s2dr3/results/SR/venus/png/ROI_0041.png
s2dr3/results/SR/venus/png/ROI_0042.png
s2dr3/results/SR/venus/png/ROI_0045.png
s2dr3/results/SR/venus/png/ROI_0046.png
s2dr3/results/SR/venus/png/ROI_0049.png
s2dr3/results/SR/venus/png/ROI_0050.png
s2dr3/results/SR/venus/png/ROI_0051.png
s2dr3/results/SR/venus/png/ROI_0055.png
s2dr3/results/SR/venus/png/ROI_0059.png
s2dr3/results/SR/venus/png/ROI_0061.png
s2dr3/results/SR/venus/png/ROI_0063.png
s2dr3/results/SR/venus/png/ROI_0066.png
s2dr3/results/SR/venus/png/ROI_0067.png
s2dr3/results/SR/venus/png/ROI_0068.png
s2dr3/results/SR/venus/png/ROI_0069.png
s2dr3/results/SR/venus/png/ROI_0072.png
s2dr3/results/SR/venus/png/ROI_0073.png
s2dr3/results/SR/venus/png/ROI_0074.png
s2dr3/results/SR/venus/png/ROI_0075.png
s2dr3/results/SR/venus/png/ROI_0077.png
s2dr3/results/SR/venus/png/ROI_0078.png
s2dr3/results/SR/venus/png/ROI_0082.png
s2dr3/results/SR/venus/png/ROI_0085.png
s2dr3/results/SR/venus/png/ROI_0089.png
s2dr3/results/SR/venus/png/ROI_0098.png
s2dr3/results/SR/venus/png/ROI_0111.png
s2dr3/results/SR/venus/png/ROI_0112.png
s2dr3/results/SR/venus/png/ROI_0115.png
s2dr3/results/SR/venus/png/ROI_0116.png
s2dr3/results/SR/venus/png/ROI_0117.png
s2dr3/results/SR/venus/png/ROI_0118.png
satlas/results/SR/naip/geotiff/HR__ROI_00006__m_4411338_ne_12_060_20210917.tif
satlas/results/SR/naip/geotiff/HR__ROI_00270__m_3809943_sw_14_060_20210909.tif
satlas/results/SR/naip/geotiff/HR__ROI_00319__m_3609931_se_14_060_20190627.tif
satlas/results/SR/naip/geotiff/HR__ROI_00399__m_3809910_sw_14_060_20210909.tif
satlas/results/SR/naip/geotiff/HR__ROI_00438__m_3409938_ne_14_060_20210919.tif
satlas/results/SR/naip/geotiff/HR__ROI_00456__m_3510353_sw_13_060_20200521.tif
satlas/results/SR/naip/geotiff/HR__ROI_00565__m_3410123_se_14_060_20200828.tif
satlas/results/SR/naip/geotiff/HR__ROI_01566__m_3211262_nw_12_060_20211113.tif
satlas/results/SR/naip/geotiff/HR__ROI_01619__m_4211110_ne_12_060_20190926.tif
satlas/results/SR/naip/geotiff/HR__ROI_01750__m_4011251_se_12_060_20210925.tif
satlas/results/SR/naip/geotiff/HR__ROI_02524__m_2709848_sw_14_060_20200501.tif
satlas/results/SR/naip/geotiff/HR__ROI_02604__m_4110621_sw_13_060_20190711.tif
satlas/results/SR/naip/geotiff/HR__ROI_03017__m_3410355_se_13_060_20200521.tif
satlas/results/SR/naip/geotiff/HR__ROI_03107__m_3809920_sw_14_060_20210909.tif
satlas/results/SR/naip/geotiff/HR__ROI_03117__m_4110739_sw_13_060_20190711.tif
satlas/results/SR/naip/geotiff/HR__ROI_03127__m_3211246_nw_12_060_20211113.tif
satlas/results/SR/naip/geotiff/HR__ROI_03578__m_3609959_nw_14_060_20210919.tif
satlas/results/SR/naip/geotiff/HR__ROI_03696__m_3809959_nw_14_060_20210909.tif
satlas/results/SR/naip/geotiff/HR__ROI_03715__m_2910329_sw_13_060_20201008.tif
satlas/results/SR/naip/geotiff/HR__ROI_03961__m_3210835_se_12_060_20200517.tif
satlas/results/SR/naip/geotiff/HR__ROI_04886__m_3509819_nw_14_060_20210906.tif
satlas/results/SR/naip/geotiff/HR__ROI_05095__m_4410348_nw_13_060_20211005.tif
satlas/results/SR/naip/geotiff/HR__ROI_05262__m_3410713_nw_13_060_20200516.tif
satlas/results/SR/naip/geotiff/HR__ROI_05509__m_3311331_sw_12_060_20211204.tif
satlas/results/SR/naip/geotiff/HR__ROI_05609__m_3809944_se_14_060_20210909.tif
satlas/results/SR/naip/geotiff/HR__ROI_05839__m_3709911_sw_14_060_20190712.tif
satlas/results/SR/naip/geotiff/HR__ROI_06305__m_4511313_se_12_060_20211002.tif
satlas/results/SR/naip/geotiff/HR__ROI_06588__m_3410304_nw_13_060_20200521.tif
satlas/results/SR/naip/geotiff/HR__ROI_06795__m_2910038_sw_14_060_20201011.tif
satlas/results/SR/naip/geotiff/HR__ROI_06937__m_4509541_ne_15_060_20190808.tif
satlas/results/SR/naip/geotiff/HR__ROI_07145__m_3410332_nw_13_060_20200521.tif
satlas/results/SR/naip/geotiff/HR__ROI_07401__m_4110136_sw_14_060_20200729.tif
satlas/results/SR/naip/geotiff/HR__ROI_07911__m_3210860_se_12_060_20200517.tif
satlas/results/SR/naip/geotiff/HR__ROI_08114__m_3809933_sw_14_060_20210909.tif
satlas/results/SR/naip/geotiff/HR__ROI_08463__m_3809960_ne_14_060_20210909.tif
satlas/results/SR/naip/geotiff/HR__ROI_08631__m_3409947_nw_14_060_20210919.tif
satlas/results/SR/naip/geotiff/HR__ROI_08872__m_4210422_sw_13_060_20190711.tif
satlas/results/SR/naip/geotiff/HR__ROI_08930__m_3410719_se_13_060_20200516.tif
satlas/results/SR/naip/geotiff/HR__ROI_09164__m_3210836_ne_12_060_20200517.tif
satlas/results/SR/naip/geotiff/HR__ROI_09337__m_4609958_nw_14_060_20200818.tif
satlas/results/SR/naip/geotiff/HR__ROI_09518__m_4309958_nw_14_060_20210917.tif
satlas/results/SR/naip/geotiff/HR__ROI_10317__m_3211226_se_12_060_20211113.tif
satlas/results/SR/naip/geotiff/HR__ROI_10611__m_4411335_sw_12_060_20210925.tif
satlas/results/SR/naip/geotiff/HR__ROI_10807__m_4012212_nw_10_060_20200713.tif
satlas/results/SR/naip/geotiff/HR__ROI_10848__m_4310032_se_14_060_20210917.tif
satlas/results/SR/naip/geotiff/HR__ROI_10903__m_4809957_sw_14_060_20190715.tif
satlas/results/SR/naip/geotiff/HR__ROI_11195__m_4210611_se_13_060_20190711.tif
satlas/results/SR/naip/geotiff/HR__ROI_11495__m_4210652_ne_13_060_20190711.tif
satlas/results/SR/naip/geotiff/HR__ROI_11533__m_3709838_ne_14_060_20190712.tif
satlas/results/SR/naip/geotiff/HR__ROI_11628__m_3410947_ne_12_060_20211115.tif
satlas/results/SR/naip/geotiff/HR__ROI_11746__m_4610048_sw_14_060_20200818.tif
satlas/results/SR/naip/geotiff/HR__ROI_12264__m_4211664_ne_11_060_20190714.tif
satlas/results/SR/naip/geotiff/HR__ROI_12389__m_3409511_sw_15_060_20210923.tif
satlas/results/SR/naip/geotiff/HR__ROI_12628__m_4109961_nw_14_060_20200808.tif
satlas/results/SR/naip/geotiff/HR__ROI_13050__m_3210044_sw_14_060_20200925.tif
satlas/results/SR/naip/geotiff/HR__ROI_13075__m_3411354_sw_12_060_20211204.tif
satlas/results/SR/naip/geotiff/HR__ROI_13496__m_4809741_ne_14_060_20210928.tif
satlas/results/SR/naip/geotiff/HR__ROI_13498__m_2910331_nw_13_060_20201007.tif
satlas/results/SR/naip/geotiff/HR__ROI_13507__m_4311655_ne_11_060_20190714.tif
satlas/results/SR/naip/geotiff/HR__ROI_13526__m_2809723_nw_14_060_20200501.tif
satlas/results/SR/naip/geotiff/HR__ROI_13742__m_2910315_nw_13_060_20201007.tif
satlas/results/SR/naip/geotiff/HR__ROI_13889__m_3110514_sw_13_060_20201011.tif
satlas/results/SR/naip/png/HR__ROI_00006__m_4411338_ne_12_060_20210917.png
satlas/results/SR/naip/png/HR__ROI_00270__m_3809943_sw_14_060_20210909.png
satlas/results/SR/naip/png/HR__ROI_00319__m_3609931_se_14_060_20190627.png
satlas/results/SR/naip/png/HR__ROI_00399__m_3809910_sw_14_060_20210909.png
satlas/results/SR/naip/png/HR__ROI_00438__m_3409938_ne_14_060_20210919.png
satlas/results/SR/naip/png/HR__ROI_00456__m_3510353_sw_13_060_20200521.png
satlas/results/SR/naip/png/HR__ROI_00565__m_3410123_se_14_060_20200828.png
satlas/results/SR/naip/png/HR__ROI_01566__m_3211262_nw_12_060_20211113.png
satlas/results/SR/naip/png/HR__ROI_01619__m_4211110_ne_12_060_20190926.png
satlas/results/SR/naip/png/HR__ROI_01750__m_4011251_se_12_060_20210925.png
satlas/results/SR/naip/png/HR__ROI_02524__m_2709848_sw_14_060_20200501.png
satlas/results/SR/naip/png/HR__ROI_02604__m_4110621_sw_13_060_20190711.png
satlas/results/SR/naip/png/HR__ROI_03017__m_3410355_se_13_060_20200521.png
satlas/results/SR/naip/png/HR__ROI_03107__m_3809920_sw_14_060_20210909.png
satlas/results/SR/naip/png/HR__ROI_03117__m_4110739_sw_13_060_20190711.png
satlas/results/SR/naip/png/HR__ROI_03127__m_3211246_nw_12_060_20211113.png
satlas/results/SR/naip/png/HR__ROI_03578__m_3609959_nw_14_060_20210919.png
satlas/results/SR/naip/png/HR__ROI_03696__m_3809959_nw_14_060_20210909.png
satlas/results/SR/naip/png/HR__ROI_03715__m_2910329_sw_13_060_20201008.png
satlas/results/SR/naip/png/HR__ROI_03961__m_3210835_se_12_060_20200517.png
satlas/results/SR/naip/png/HR__ROI_04886__m_3509819_nw_14_060_20210906.png
satlas/results/SR/naip/png/HR__ROI_05095__m_4410348_nw_13_060_20211005.png
satlas/results/SR/naip/png/HR__ROI_05262__m_3410713_nw_13_060_20200516.png
satlas/results/SR/naip/png/HR__ROI_05509__m_3311331_sw_12_060_20211204.png
satlas/results/SR/naip/png/HR__ROI_05609__m_3809944_se_14_060_20210909.png
satlas/results/SR/naip/png/HR__ROI_05839__m_3709911_sw_14_060_20190712.png
satlas/results/SR/naip/png/HR__ROI_06305__m_4511313_se_12_060_20211002.png
satlas/results/SR/naip/png/HR__ROI_06588__m_3410304_nw_13_060_20200521.png
satlas/results/SR/naip/png/HR__ROI_06795__m_2910038_sw_14_060_20201011.png
satlas/results/SR/naip/png/HR__ROI_06937__m_4509541_ne_15_060_20190808.png
satlas/results/SR/naip/png/HR__ROI_07145__m_3410332_nw_13_060_20200521.png
satlas/results/SR/naip/png/HR__ROI_07401__m_4110136_sw_14_060_20200729.png
satlas/results/SR/naip/png/HR__ROI_07911__m_3210860_se_12_060_20200517.png
satlas/results/SR/naip/png/HR__ROI_08114__m_3809933_sw_14_060_20210909.png
satlas/results/SR/naip/png/HR__ROI_08463__m_3809960_ne_14_060_20210909.png
satlas/results/SR/naip/png/HR__ROI_08631__m_3409947_nw_14_060_20210919.png
satlas/results/SR/naip/png/HR__ROI_08872__m_4210422_sw_13_060_20190711.png
satlas/results/SR/naip/png/HR__ROI_08930__m_3410719_se_13_060_20200516.png
satlas/results/SR/naip/png/HR__ROI_09164__m_3210836_ne_12_060_20200517.png
satlas/results/SR/naip/png/HR__ROI_09337__m_4609958_nw_14_060_20200818.png
satlas/results/SR/naip/png/HR__ROI_09518__m_4309958_nw_14_060_20210917.png
satlas/results/SR/naip/png/HR__ROI_10317__m_3211226_se_12_060_20211113.png
satlas/results/SR/naip/png/HR__ROI_10611__m_4411335_sw_12_060_20210925.png
satlas/results/SR/naip/png/HR__ROI_10807__m_4012212_nw_10_060_20200713.png
satlas/results/SR/naip/png/HR__ROI_10848__m_4310032_se_14_060_20210917.png
satlas/results/SR/naip/png/HR__ROI_10903__m_4809957_sw_14_060_20190715.png
satlas/results/SR/naip/png/HR__ROI_11195__m_4210611_se_13_060_20190711.png
satlas/results/SR/naip/png/HR__ROI_11495__m_4210652_ne_13_060_20190711.png
satlas/results/SR/naip/png/HR__ROI_11533__m_3709838_ne_14_060_20190712.png
satlas/results/SR/naip/png/HR__ROI_11628__m_3410947_ne_12_060_20211115.png
satlas/results/SR/naip/png/HR__ROI_11746__m_4610048_sw_14_060_20200818.png
satlas/results/SR/naip/png/HR__ROI_12264__m_4211664_ne_11_060_20190714.png
satlas/results/SR/naip/png/HR__ROI_12389__m_3409511_sw_15_060_20210923.png
satlas/results/SR/naip/png/HR__ROI_12628__m_4109961_nw_14_060_20200808.png
satlas/results/SR/naip/png/HR__ROI_13050__m_3210044_sw_14_060_20200925.png
satlas/results/SR/naip/png/HR__ROI_13075__m_3411354_sw_12_060_20211204.png
satlas/results/SR/naip/png/HR__ROI_13496__m_4809741_ne_14_060_20210928.png
satlas/results/SR/naip/png/HR__ROI_13498__m_2910331_nw_13_060_20201007.png
satlas/results/SR/naip/png/HR__ROI_13507__m_4311655_ne_11_060_20190714.png
satlas/results/SR/naip/png/HR__ROI_13526__m_2809723_nw_14_060_20200501.png
satlas/results/SR/naip/png/HR__ROI_13742__m_2910315_nw_13_060_20201007.png
satlas/results/SR/naip/png/HR__ROI_13889__m_3110514_sw_13_060_20201011.png
satlas/results/SR/spain_crops/geotiff/HR__ROI_00001__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
satlas/results/SR/spain_crops/geotiff/HR__ROI_00002__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
satlas/results/SR/spain_crops/geotiff/HR__ROI_00003__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
satlas/results/SR/spain_crops/geotiff/HR__ROI_00004__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
satlas/results/SR/spain_crops/geotiff/HR__ROI_00005__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
satlas/results/SR/spain_crops/geotiff/HR__ROI_00006__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
satlas/results/SR/spain_crops/geotiff/HR__ROI_00007__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
satlas/results/SR/spain_crops/geotiff/HR__ROI_00008__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
satlas/results/SR/spain_crops/geotiff/HR__ROI_00010__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
satlas/results/SR/spain_crops/geotiff/HR__ROI_00011__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
satlas/results/SR/spain_crops/geotiff/HR__ROI_00012__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
satlas/results/SR/spain_crops/geotiff/HR__ROI_00013__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
satlas/results/SR/spain_crops/geotiff/HR__ROI_00014__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
satlas/results/SR/spain_crops/geotiff/HR__ROI_00015__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
satlas/results/SR/spain_crops/geotiff/HR__ROI_00016__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
satlas/results/SR/spain_crops/geotiff/HR__ROI_00017__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
satlas/results/SR/spain_crops/geotiff/HR__ROI_00019__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0722-1.tif
satlas/results/SR/spain_crops/geotiff/HR__ROI_00023__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
satlas/results/SR/spain_crops/geotiff/HR__ROI_00024__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
satlas/results/SR/spain_crops/geotiff/HR__ROI_00025__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
satlas/results/SR/spain_crops/geotiff/HR__ROI_00026__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
satlas/results/SR/spain_crops/geotiff/HR__ROI_00027__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
satlas/results/SR/spain_crops/geotiff/HR__ROI_00028__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
satlas/results/SR/spain_crops/geotiff/HR__ROI_00030__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
satlas/results/SR/spain_crops/geotiff/HR__ROI_00031__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
satlas/results/SR/spain_crops/geotiff/HR__ROI_00032__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
satlas/results/SR/spain_crops/geotiff/HR__ROI_00033__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
satlas/results/SR/spain_crops/geotiff/HR__ROI_00034__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
satlas/results/SR/spain_crops/png/HR__ROI_00001__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
satlas/results/SR/spain_crops/png/HR__ROI_00002__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
satlas/results/SR/spain_crops/png/HR__ROI_00003__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
satlas/results/SR/spain_crops/png/HR__ROI_00004__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
satlas/results/SR/spain_crops/png/HR__ROI_00005__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
satlas/results/SR/spain_crops/png/HR__ROI_00006__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
satlas/results/SR/spain_crops/png/HR__ROI_00007__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
satlas/results/SR/spain_crops/png/HR__ROI_00008__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
satlas/results/SR/spain_crops/png/HR__ROI_00010__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
satlas/results/SR/spain_crops/png/HR__ROI_00011__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
satlas/results/SR/spain_crops/png/HR__ROI_00012__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
satlas/results/SR/spain_crops/png/HR__ROI_00013__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
satlas/results/SR/spain_crops/png/HR__ROI_00014__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
satlas/results/SR/spain_crops/png/HR__ROI_00015__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
satlas/results/SR/spain_crops/png/HR__ROI_00016__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
satlas/results/SR/spain_crops/png/HR__ROI_00017__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
satlas/results/SR/spain_crops/png/HR__ROI_00019__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0722-1.png
satlas/results/SR/spain_crops/png/HR__ROI_00023__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
satlas/results/SR/spain_crops/png/HR__ROI_00024__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
satlas/results/SR/spain_crops/png/HR__ROI_00025__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
satlas/results/SR/spain_crops/png/HR__ROI_00026__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
satlas/results/SR/spain_crops/png/HR__ROI_00027__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
satlas/results/SR/spain_crops/png/HR__ROI_00028__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
satlas/results/SR/spain_crops/png/HR__ROI_00030__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
satlas/results/SR/spain_crops/png/HR__ROI_00031__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
satlas/results/SR/spain_crops/png/HR__ROI_00032__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
satlas/results/SR/spain_crops/png/HR__ROI_00033__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
satlas/results/SR/spain_crops/png/HR__ROI_00034__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
satlas/results/SR/spain_urban/geotiff/HR__ROI_00001__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
satlas/results/SR/spain_urban/geotiff/HR__ROI_00002__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
satlas/results/SR/spain_urban/geotiff/HR__ROI_00004__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
satlas/results/SR/spain_urban/geotiff/HR__ROI_00006__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
satlas/results/SR/spain_urban/geotiff/HR__ROI_00007__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
satlas/results/SR/spain_urban/geotiff/HR__ROI_00009__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
satlas/results/SR/spain_urban/geotiff/HR__ROI_00010__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
satlas/results/SR/spain_urban/geotiff/HR__ROI_00011__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
satlas/results/SR/spain_urban/geotiff/HR__ROI_00013__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
satlas/results/SR/spain_urban/geotiff/HR__ROI_00014__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
satlas/results/SR/spain_urban/geotiff/HR__ROI_00026__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
satlas/results/SR/spain_urban/geotiff/HR__ROI_00027__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
satlas/results/SR/spain_urban/geotiff/HR__ROI_00028__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
satlas/results/SR/spain_urban/geotiff/HR__ROI_00030__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
satlas/results/SR/spain_urban/geotiff/HR__ROI_00031__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
satlas/results/SR/spain_urban/geotiff/HR__ROI_00032__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
satlas/results/SR/spain_urban/geotiff/HR__ROI_00033__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
satlas/results/SR/spain_urban/geotiff/HR__ROI_00034__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
satlas/results/SR/spain_urban/geotiff/HR__ROI_00035__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
satlas/results/SR/spain_urban/geotiff/HR__ROI_00036__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
satlas/results/SR/spain_urban/png/HR__ROI_00001__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
satlas/results/SR/spain_urban/png/HR__ROI_00002__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
satlas/results/SR/spain_urban/png/HR__ROI_00004__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
satlas/results/SR/spain_urban/png/HR__ROI_00006__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
satlas/results/SR/spain_urban/png/HR__ROI_00007__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
satlas/results/SR/spain_urban/png/HR__ROI_00009__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
satlas/results/SR/spain_urban/png/HR__ROI_00010__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
satlas/results/SR/spain_urban/png/HR__ROI_00011__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
satlas/results/SR/spain_urban/png/HR__ROI_00013__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
satlas/results/SR/spain_urban/png/HR__ROI_00014__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
satlas/results/SR/spain_urban/png/HR__ROI_00026__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
satlas/results/SR/spain_urban/png/HR__ROI_00027__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
satlas/results/SR/spain_urban/png/HR__ROI_00028__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
satlas/results/SR/spain_urban/png/HR__ROI_00030__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
satlas/results/SR/spain_urban/png/HR__ROI_00031__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
satlas/results/SR/spain_urban/png/HR__ROI_00032__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
satlas/results/SR/spain_urban/png/HR__ROI_00033__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
satlas/results/SR/spain_urban/png/HR__ROI_00034__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
satlas/results/SR/spain_urban/png/HR__ROI_00035__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
satlas/results/SR/spain_urban/png/HR__ROI_00036__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
satlas/results/SR/spot/geotiff/ROI_0037__IMG_SPOT6_MS_201702050755046_ORT_ff6f9336-c21e-4081-c072-6038d0f53297_R1C1.tif
satlas/results/SR/spot/geotiff/ROI_0050__IMG_SPOT6_MS_201702220817301_ORT_7f0f2ccb-d59c-41eb-c1f3-27856284016a_R1C1.tif
satlas/results/SR/spot/geotiff/ROI_0117__IMG_SPOT6_MS_201705131607216_ORT_97c1e2b1-ebe8-49d9-c9d0-ae9370a8424a_R1C1.tif
satlas/results/SR/spot/geotiff/ROI_0803__IMG_SPOT6_MS_201903020839263_ORT_fd4ee860-4321-4bb8-cb00-fbc163d2b90f_R1C1.tif
satlas/results/SR/spot/geotiff/ROI_0967__IMG_SPOT6_MS_201910190953241_ORT_a0e55b71-b9f2-4fef-cfc4-8b8e375e47a5_R1C1.tif
satlas/results/SR/spot/geotiff/ROI_1647__IMG_SPOT6_MS_202107211821022_ORT_6cb84e1b-0eae-4daa-cdbe-9a27b94d2244_R1C1.tif
satlas/results/SR/spot/geotiff/ROI_2603__IMG_SPOT7_MS_201907190724338_ORT_2abb8cd4-5a93-4c58-ccb3-697c70f52dce_R1C1.tif
satlas/results/SR/spot/geotiff/ROI_3126__IMG_SPOT7_MS_202011250946543_ORT_aa60c730-be23-4286-c20f-2629d82909ca_R1C1.tif
satlas/results/SR/spot/geotiff/ROI_3171__IMG_SPOT7_MS_202101070832438_ORT_821c8f18-7eb9-4438-c475-4a193446fb48_R1C1.tif
satlas/results/SR/spot/png/ROI_0037__IMG_SPOT6_MS_201702050755046_ORT_ff6f9336-c21e-4081-c072-6038d0f53297_R1C1.png
satlas/results/SR/spot/png/ROI_0050__IMG_SPOT6_MS_201702220817301_ORT_7f0f2ccb-d59c-41eb-c1f3-27856284016a_R1C1.png
satlas/results/SR/spot/png/ROI_0117__IMG_SPOT6_MS_201705131607216_ORT_97c1e2b1-ebe8-49d9-c9d0-ae9370a8424a_R1C1.png
satlas/results/SR/spot/png/ROI_0803__IMG_SPOT6_MS_201903020839263_ORT_fd4ee860-4321-4bb8-cb00-fbc163d2b90f_R1C1.png
satlas/results/SR/spot/png/ROI_0967__IMG_SPOT6_MS_201910190953241_ORT_a0e55b71-b9f2-4fef-cfc4-8b8e375e47a5_R1C1.png
satlas/results/SR/spot/png/ROI_1647__IMG_SPOT6_MS_202107211821022_ORT_6cb84e1b-0eae-4daa-cdbe-9a27b94d2244_R1C1.png
satlas/results/SR/spot/png/ROI_2603__IMG_SPOT7_MS_201907190724338_ORT_2abb8cd4-5a93-4c58-ccb3-697c70f52dce_R1C1.png
satlas/results/SR/spot/png/ROI_3126__IMG_SPOT7_MS_202011250946543_ORT_aa60c730-be23-4286-c20f-2629d82909ca_R1C1.png
satlas/results/SR/spot/png/ROI_3171__IMG_SPOT7_MS_202101070832438_ORT_821c8f18-7eb9-4438-c475-4a193446fb48_R1C1.png
satlas/results/SR/venus/geotiff/ROI_0005.tif
satlas/results/SR/venus/geotiff/ROI_0006.tif
satlas/results/SR/venus/geotiff/ROI_0007.tif
satlas/results/SR/venus/geotiff/ROI_0008.tif
satlas/results/SR/venus/geotiff/ROI_0009.tif
satlas/results/SR/venus/geotiff/ROI_0010.tif
satlas/results/SR/venus/geotiff/ROI_0011.tif
satlas/results/SR/venus/geotiff/ROI_0015.tif
satlas/results/SR/venus/geotiff/ROI_0017.tif
satlas/results/SR/venus/geotiff/ROI_0018.tif
satlas/results/SR/venus/geotiff/ROI_0019.tif
satlas/results/SR/venus/geotiff/ROI_0020.tif
satlas/results/SR/venus/geotiff/ROI_0021.tif
satlas/results/SR/venus/geotiff/ROI_0023.tif
satlas/results/SR/venus/geotiff/ROI_0024.tif
satlas/results/SR/venus/geotiff/ROI_0025.tif
satlas/results/SR/venus/geotiff/ROI_0026.tif
satlas/results/SR/venus/geotiff/ROI_0027.tif
satlas/results/SR/venus/geotiff/ROI_0029.tif
satlas/results/SR/venus/geotiff/ROI_0030.tif
satlas/results/SR/venus/geotiff/ROI_0031.tif
satlas/results/SR/venus/geotiff/ROI_0032.tif
satlas/results/SR/venus/geotiff/ROI_0033.tif
satlas/results/SR/venus/geotiff/ROI_0034.tif
satlas/results/SR/venus/geotiff/ROI_0036.tif
satlas/results/SR/venus/geotiff/ROI_0037.tif
satlas/results/SR/venus/geotiff/ROI_0038.tif
satlas/results/SR/venus/geotiff/ROI_0040.tif
satlas/results/SR/venus/geotiff/ROI_0041.tif
satlas/results/SR/venus/geotiff/ROI_0042.tif
satlas/results/SR/venus/geotiff/ROI_0045.tif
satlas/results/SR/venus/geotiff/ROI_0046.tif
satlas/results/SR/venus/geotiff/ROI_0049.tif
satlas/results/SR/venus/geotiff/ROI_0050.tif
satlas/results/SR/venus/geotiff/ROI_0051.tif
satlas/results/SR/venus/geotiff/ROI_0055.tif
satlas/results/SR/venus/geotiff/ROI_0059.tif
satlas/results/SR/venus/geotiff/ROI_0061.tif
satlas/results/SR/venus/geotiff/ROI_0063.tif
satlas/results/SR/venus/geotiff/ROI_0066.tif
satlas/results/SR/venus/geotiff/ROI_0067.tif
satlas/results/SR/venus/geotiff/ROI_0068.tif
satlas/results/SR/venus/geotiff/ROI_0069.tif
satlas/results/SR/venus/geotiff/ROI_0072.tif
satlas/results/SR/venus/geotiff/ROI_0073.tif
satlas/results/SR/venus/geotiff/ROI_0074.tif
satlas/results/SR/venus/geotiff/ROI_0075.tif
satlas/results/SR/venus/geotiff/ROI_0077.tif
satlas/results/SR/venus/geotiff/ROI_0078.tif
satlas/results/SR/venus/geotiff/ROI_0082.tif
satlas/results/SR/venus/geotiff/ROI_0085.tif
satlas/results/SR/venus/geotiff/ROI_0089.tif
satlas/results/SR/venus/geotiff/ROI_0098.tif
satlas/results/SR/venus/geotiff/ROI_0111.tif
satlas/results/SR/venus/geotiff/ROI_0112.tif
satlas/results/SR/venus/geotiff/ROI_0115.tif
satlas/results/SR/venus/geotiff/ROI_0116.tif
satlas/results/SR/venus/geotiff/ROI_0117.tif
satlas/results/SR/venus/geotiff/ROI_0118.tif
satlas/results/SR/venus/png/ROI_0005.png
satlas/results/SR/venus/png/ROI_0006.png
satlas/results/SR/venus/png/ROI_0007.png
satlas/results/SR/venus/png/ROI_0008.png
satlas/results/SR/venus/png/ROI_0009.png
satlas/results/SR/venus/png/ROI_0010.png
satlas/results/SR/venus/png/ROI_0011.png
satlas/results/SR/venus/png/ROI_0015.png
satlas/results/SR/venus/png/ROI_0017.png
satlas/results/SR/venus/png/ROI_0018.png
satlas/results/SR/venus/png/ROI_0019.png
satlas/results/SR/venus/png/ROI_0020.png
satlas/results/SR/venus/png/ROI_0021.png
satlas/results/SR/venus/png/ROI_0023.png
satlas/results/SR/venus/png/ROI_0024.png
satlas/results/SR/venus/png/ROI_0025.png
satlas/results/SR/venus/png/ROI_0026.png
satlas/results/SR/venus/png/ROI_0027.png
satlas/results/SR/venus/png/ROI_0029.png
satlas/results/SR/venus/png/ROI_0030.png
satlas/results/SR/venus/png/ROI_0031.png
satlas/results/SR/venus/png/ROI_0032.png
satlas/results/SR/venus/png/ROI_0033.png
satlas/results/SR/venus/png/ROI_0034.png
satlas/results/SR/venus/png/ROI_0036.png
satlas/results/SR/venus/png/ROI_0037.png
satlas/results/SR/venus/png/ROI_0038.png
satlas/results/SR/venus/png/ROI_0040.png
satlas/results/SR/venus/png/ROI_0041.png
satlas/results/SR/venus/png/ROI_0042.png
satlas/results/SR/venus/png/ROI_0045.png
satlas/results/SR/venus/png/ROI_0046.png
satlas/results/SR/venus/png/ROI_0049.png
satlas/results/SR/venus/png/ROI_0050.png
satlas/results/SR/venus/png/ROI_0051.png
satlas/results/SR/venus/png/ROI_0055.png
satlas/results/SR/venus/png/ROI_0059.png
satlas/results/SR/venus/png/ROI_0061.png
satlas/results/SR/venus/png/ROI_0063.png
satlas/results/SR/venus/png/ROI_0066.png
satlas/results/SR/venus/png/ROI_0067.png
satlas/results/SR/venus/png/ROI_0068.png
satlas/results/SR/venus/png/ROI_0069.png
satlas/results/SR/venus/png/ROI_0072.png
satlas/results/SR/venus/png/ROI_0073.png
satlas/results/SR/venus/png/ROI_0074.png
satlas/results/SR/venus/png/ROI_0075.png
satlas/results/SR/venus/png/ROI_0077.png
satlas/results/SR/venus/png/ROI_0078.png
satlas/results/SR/venus/png/ROI_0082.png
satlas/results/SR/venus/png/ROI_0085.png
satlas/results/SR/venus/png/ROI_0089.png
satlas/results/SR/venus/png/ROI_0098.png
satlas/results/SR/venus/png/ROI_0111.png
satlas/results/SR/venus/png/ROI_0112.png
satlas/results/SR/venus/png/ROI_0115.png
satlas/results/SR/venus/png/ROI_0116.png
satlas/results/SR/venus/png/ROI_0117.png
satlas/results/SR/venus/png/ROI_0118.png
satlas/run.py
satlas/satlas.zip
satlas/utils.py
satlas/weights/esrgan_1S2.pth
sr4rs/results/SR/naip/geotiff/HR__ROI_00006__m_4411338_ne_12_060_20210917.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_00270__m_3809943_sw_14_060_20210909.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_00319__m_3609931_se_14_060_20190627.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_00399__m_3809910_sw_14_060_20210909.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_00438__m_3409938_ne_14_060_20210919.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_00456__m_3510353_sw_13_060_20200521.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_00565__m_3410123_se_14_060_20200828.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_01566__m_3211262_nw_12_060_20211113.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_01619__m_4211110_ne_12_060_20190926.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_01750__m_4011251_se_12_060_20210925.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_02524__m_2709848_sw_14_060_20200501.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_02604__m_4110621_sw_13_060_20190711.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_03017__m_3410355_se_13_060_20200521.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_03107__m_3809920_sw_14_060_20210909.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_03117__m_4110739_sw_13_060_20190711.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_03127__m_3211246_nw_12_060_20211113.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_03578__m_3609959_nw_14_060_20210919.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_03696__m_3809959_nw_14_060_20210909.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_03715__m_2910329_sw_13_060_20201008.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_03961__m_3210835_se_12_060_20200517.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_04886__m_3509819_nw_14_060_20210906.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_05095__m_4410348_nw_13_060_20211005.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_05262__m_3410713_nw_13_060_20200516.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_05509__m_3311331_sw_12_060_20211204.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_05609__m_3809944_se_14_060_20210909.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_05839__m_3709911_sw_14_060_20190712.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_06305__m_4511313_se_12_060_20211002.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_06588__m_3410304_nw_13_060_20200521.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_06795__m_2910038_sw_14_060_20201011.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_06937__m_4509541_ne_15_060_20190808.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_07145__m_3410332_nw_13_060_20200521.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_07401__m_4110136_sw_14_060_20200729.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_07911__m_3210860_se_12_060_20200517.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_08114__m_3809933_sw_14_060_20210909.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_08463__m_3809960_ne_14_060_20210909.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_08631__m_3409947_nw_14_060_20210919.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_08872__m_4210422_sw_13_060_20190711.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_08930__m_3410719_se_13_060_20200516.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_09164__m_3210836_ne_12_060_20200517.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_09337__m_4609958_nw_14_060_20200818.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_09518__m_4309958_nw_14_060_20210917.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_10317__m_3211226_se_12_060_20211113.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_10611__m_4411335_sw_12_060_20210925.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_10807__m_4012212_nw_10_060_20200713.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_10848__m_4310032_se_14_060_20210917.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_10903__m_4809957_sw_14_060_20190715.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_11195__m_4210611_se_13_060_20190711.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_11495__m_4210652_ne_13_060_20190711.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_11533__m_3709838_ne_14_060_20190712.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_11628__m_3410947_ne_12_060_20211115.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_11746__m_4610048_sw_14_060_20200818.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_12264__m_4211664_ne_11_060_20190714.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_12389__m_3409511_sw_15_060_20210923.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_12628__m_4109961_nw_14_060_20200808.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_13050__m_3210044_sw_14_060_20200925.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_13075__m_3411354_sw_12_060_20211204.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_13496__m_4809741_ne_14_060_20210928.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_13498__m_2910331_nw_13_060_20201007.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_13507__m_4311655_ne_11_060_20190714.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_13526__m_2809723_nw_14_060_20200501.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_13742__m_2910315_nw_13_060_20201007.tif
sr4rs/results/SR/naip/geotiff/HR__ROI_13889__m_3110514_sw_13_060_20201011.tif
sr4rs/results/SR/naip/png/HR__ROI_00006__m_4411338_ne_12_060_20210917.png
sr4rs/results/SR/naip/png/HR__ROI_00270__m_3809943_sw_14_060_20210909.png
sr4rs/results/SR/naip/png/HR__ROI_00319__m_3609931_se_14_060_20190627.png
sr4rs/results/SR/naip/png/HR__ROI_00399__m_3809910_sw_14_060_20210909.png
sr4rs/results/SR/naip/png/HR__ROI_00438__m_3409938_ne_14_060_20210919.png
sr4rs/results/SR/naip/png/HR__ROI_00456__m_3510353_sw_13_060_20200521.png
sr4rs/results/SR/naip/png/HR__ROI_00565__m_3410123_se_14_060_20200828.png
sr4rs/results/SR/naip/png/HR__ROI_01566__m_3211262_nw_12_060_20211113.png
sr4rs/results/SR/naip/png/HR__ROI_01619__m_4211110_ne_12_060_20190926.png
sr4rs/results/SR/naip/png/HR__ROI_01750__m_4011251_se_12_060_20210925.png
sr4rs/results/SR/naip/png/HR__ROI_02524__m_2709848_sw_14_060_20200501.png
sr4rs/results/SR/naip/png/HR__ROI_02604__m_4110621_sw_13_060_20190711.png
sr4rs/results/SR/naip/png/HR__ROI_03017__m_3410355_se_13_060_20200521.png
sr4rs/results/SR/naip/png/HR__ROI_03107__m_3809920_sw_14_060_20210909.png
sr4rs/results/SR/naip/png/HR__ROI_03117__m_4110739_sw_13_060_20190711.png
sr4rs/results/SR/naip/png/HR__ROI_03127__m_3211246_nw_12_060_20211113.png
sr4rs/results/SR/naip/png/HR__ROI_03578__m_3609959_nw_14_060_20210919.png
sr4rs/results/SR/naip/png/HR__ROI_03696__m_3809959_nw_14_060_20210909.png
sr4rs/results/SR/naip/png/HR__ROI_03715__m_2910329_sw_13_060_20201008.png
sr4rs/results/SR/naip/png/HR__ROI_03961__m_3210835_se_12_060_20200517.png
sr4rs/results/SR/naip/png/HR__ROI_04886__m_3509819_nw_14_060_20210906.png
sr4rs/results/SR/naip/png/HR__ROI_05095__m_4410348_nw_13_060_20211005.png
sr4rs/results/SR/naip/png/HR__ROI_05262__m_3410713_nw_13_060_20200516.png
sr4rs/results/SR/naip/png/HR__ROI_05509__m_3311331_sw_12_060_20211204.png
sr4rs/results/SR/naip/png/HR__ROI_05609__m_3809944_se_14_060_20210909.png
sr4rs/results/SR/naip/png/HR__ROI_05839__m_3709911_sw_14_060_20190712.png
sr4rs/results/SR/naip/png/HR__ROI_06305__m_4511313_se_12_060_20211002.png
sr4rs/results/SR/naip/png/HR__ROI_06588__m_3410304_nw_13_060_20200521.png
sr4rs/results/SR/naip/png/HR__ROI_06795__m_2910038_sw_14_060_20201011.png
sr4rs/results/SR/naip/png/HR__ROI_06937__m_4509541_ne_15_060_20190808.png
sr4rs/results/SR/naip/png/HR__ROI_07145__m_3410332_nw_13_060_20200521.png
sr4rs/results/SR/naip/png/HR__ROI_07401__m_4110136_sw_14_060_20200729.png
sr4rs/results/SR/naip/png/HR__ROI_07911__m_3210860_se_12_060_20200517.png
sr4rs/results/SR/naip/png/HR__ROI_08114__m_3809933_sw_14_060_20210909.png
sr4rs/results/SR/naip/png/HR__ROI_08463__m_3809960_ne_14_060_20210909.png
sr4rs/results/SR/naip/png/HR__ROI_08631__m_3409947_nw_14_060_20210919.png
sr4rs/results/SR/naip/png/HR__ROI_08872__m_4210422_sw_13_060_20190711.png
sr4rs/results/SR/naip/png/HR__ROI_08930__m_3410719_se_13_060_20200516.png
sr4rs/results/SR/naip/png/HR__ROI_09164__m_3210836_ne_12_060_20200517.png
sr4rs/results/SR/naip/png/HR__ROI_09337__m_4609958_nw_14_060_20200818.png
sr4rs/results/SR/naip/png/HR__ROI_09518__m_4309958_nw_14_060_20210917.png
sr4rs/results/SR/naip/png/HR__ROI_10317__m_3211226_se_12_060_20211113.png
sr4rs/results/SR/naip/png/HR__ROI_10611__m_4411335_sw_12_060_20210925.png
sr4rs/results/SR/naip/png/HR__ROI_10807__m_4012212_nw_10_060_20200713.png
sr4rs/results/SR/naip/png/HR__ROI_10848__m_4310032_se_14_060_20210917.png
sr4rs/results/SR/naip/png/HR__ROI_10903__m_4809957_sw_14_060_20190715.png
sr4rs/results/SR/naip/png/HR__ROI_11195__m_4210611_se_13_060_20190711.png
sr4rs/results/SR/naip/png/HR__ROI_11495__m_4210652_ne_13_060_20190711.png
sr4rs/results/SR/naip/png/HR__ROI_11533__m_3709838_ne_14_060_20190712.png
sr4rs/results/SR/naip/png/HR__ROI_11628__m_3410947_ne_12_060_20211115.png
sr4rs/results/SR/naip/png/HR__ROI_11746__m_4610048_sw_14_060_20200818.png
sr4rs/results/SR/naip/png/HR__ROI_12264__m_4211664_ne_11_060_20190714.png
sr4rs/results/SR/naip/png/HR__ROI_12389__m_3409511_sw_15_060_20210923.png
sr4rs/results/SR/naip/png/HR__ROI_12628__m_4109961_nw_14_060_20200808.png
sr4rs/results/SR/naip/png/HR__ROI_13050__m_3210044_sw_14_060_20200925.png
sr4rs/results/SR/naip/png/HR__ROI_13075__m_3411354_sw_12_060_20211204.png
sr4rs/results/SR/naip/png/HR__ROI_13496__m_4809741_ne_14_060_20210928.png
sr4rs/results/SR/naip/png/HR__ROI_13498__m_2910331_nw_13_060_20201007.png
sr4rs/results/SR/naip/png/HR__ROI_13507__m_4311655_ne_11_060_20190714.png
sr4rs/results/SR/naip/png/HR__ROI_13526__m_2809723_nw_14_060_20200501.png
sr4rs/results/SR/naip/png/HR__ROI_13742__m_2910315_nw_13_060_20201007.png
sr4rs/results/SR/naip/png/HR__ROI_13889__m_3110514_sw_13_060_20201011.png
sr4rs/results/SR/spain_crops/geotiff/HR__ROI_00001__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
sr4rs/results/SR/spain_crops/geotiff/HR__ROI_00002__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
sr4rs/results/SR/spain_crops/geotiff/HR__ROI_00003__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
sr4rs/results/SR/spain_crops/geotiff/HR__ROI_00004__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
sr4rs/results/SR/spain_crops/geotiff/HR__ROI_00005__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
sr4rs/results/SR/spain_crops/geotiff/HR__ROI_00006__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
sr4rs/results/SR/spain_crops/geotiff/HR__ROI_00007__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
sr4rs/results/SR/spain_crops/geotiff/HR__ROI_00008__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
sr4rs/results/SR/spain_crops/geotiff/HR__ROI_00010__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
sr4rs/results/SR/spain_crops/geotiff/HR__ROI_00011__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
sr4rs/results/SR/spain_crops/geotiff/HR__ROI_00012__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
sr4rs/results/SR/spain_crops/geotiff/HR__ROI_00013__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
sr4rs/results/SR/spain_crops/geotiff/HR__ROI_00014__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
sr4rs/results/SR/spain_crops/geotiff/HR__ROI_00015__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
sr4rs/results/SR/spain_crops/geotiff/HR__ROI_00016__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
sr4rs/results/SR/spain_crops/geotiff/HR__ROI_00017__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
sr4rs/results/SR/spain_crops/geotiff/HR__ROI_00019__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0722-1.tif
sr4rs/results/SR/spain_crops/geotiff/HR__ROI_00023__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
sr4rs/results/SR/spain_crops/geotiff/HR__ROI_00024__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
sr4rs/results/SR/spain_crops/geotiff/HR__ROI_00025__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
sr4rs/results/SR/spain_crops/geotiff/HR__ROI_00026__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
sr4rs/results/SR/spain_crops/geotiff/HR__ROI_00027__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
sr4rs/results/SR/spain_crops/geotiff/HR__ROI_00028__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
sr4rs/results/SR/spain_crops/geotiff/HR__ROI_00030__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
sr4rs/results/SR/spain_crops/geotiff/HR__ROI_00031__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
sr4rs/results/SR/spain_crops/geotiff/HR__ROI_00032__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
sr4rs/results/SR/spain_crops/geotiff/HR__ROI_00033__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
sr4rs/results/SR/spain_crops/geotiff/HR__ROI_00034__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
sr4rs/results/SR/spain_crops/png/HR__ROI_00001__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
sr4rs/results/SR/spain_crops/png/HR__ROI_00002__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
sr4rs/results/SR/spain_crops/png/HR__ROI_00003__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
sr4rs/results/SR/spain_crops/png/HR__ROI_00004__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
sr4rs/results/SR/spain_crops/png/HR__ROI_00005__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
sr4rs/results/SR/spain_crops/png/HR__ROI_00006__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
sr4rs/results/SR/spain_crops/png/HR__ROI_00007__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
sr4rs/results/SR/spain_crops/png/HR__ROI_00008__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
sr4rs/results/SR/spain_crops/png/HR__ROI_00010__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
sr4rs/results/SR/spain_crops/png/HR__ROI_00011__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
sr4rs/results/SR/spain_crops/png/HR__ROI_00012__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
sr4rs/results/SR/spain_crops/png/HR__ROI_00013__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
sr4rs/results/SR/spain_crops/png/HR__ROI_00014__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
sr4rs/results/SR/spain_crops/png/HR__ROI_00015__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
sr4rs/results/SR/spain_crops/png/HR__ROI_00016__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
sr4rs/results/SR/spain_crops/png/HR__ROI_00017__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
sr4rs/results/SR/spain_crops/png/HR__ROI_00019__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0722-1.png
sr4rs/results/SR/spain_crops/png/HR__ROI_00023__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
sr4rs/results/SR/spain_crops/png/HR__ROI_00024__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
sr4rs/results/SR/spain_crops/png/HR__ROI_00025__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
sr4rs/results/SR/spain_crops/png/HR__ROI_00026__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
sr4rs/results/SR/spain_crops/png/HR__ROI_00027__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
sr4rs/results/SR/spain_crops/png/HR__ROI_00028__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
sr4rs/results/SR/spain_crops/png/HR__ROI_00030__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
sr4rs/results/SR/spain_crops/png/HR__ROI_00031__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
sr4rs/results/SR/spain_crops/png/HR__ROI_00032__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
sr4rs/results/SR/spain_crops/png/HR__ROI_00033__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
sr4rs/results/SR/spain_crops/png/HR__ROI_00034__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
sr4rs/results/SR/spain_urban/geotiff/HR__ROI_00001__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
sr4rs/results/SR/spain_urban/geotiff/HR__ROI_00002__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
sr4rs/results/SR/spain_urban/geotiff/HR__ROI_00004__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
sr4rs/results/SR/spain_urban/geotiff/HR__ROI_00006__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
sr4rs/results/SR/spain_urban/geotiff/HR__ROI_00007__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
sr4rs/results/SR/spain_urban/geotiff/HR__ROI_00009__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
sr4rs/results/SR/spain_urban/geotiff/HR__ROI_00010__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
sr4rs/results/SR/spain_urban/geotiff/HR__ROI_00011__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
sr4rs/results/SR/spain_urban/geotiff/HR__ROI_00013__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
sr4rs/results/SR/spain_urban/geotiff/HR__ROI_00014__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
sr4rs/results/SR/spain_urban/geotiff/HR__ROI_00026__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
sr4rs/results/SR/spain_urban/geotiff/HR__ROI_00027__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
sr4rs/results/SR/spain_urban/geotiff/HR__ROI_00028__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
sr4rs/results/SR/spain_urban/geotiff/HR__ROI_00030__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
sr4rs/results/SR/spain_urban/geotiff/HR__ROI_00031__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
sr4rs/results/SR/spain_urban/geotiff/HR__ROI_00032__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
sr4rs/results/SR/spain_urban/geotiff/HR__ROI_00033__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
sr4rs/results/SR/spain_urban/geotiff/HR__ROI_00034__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
sr4rs/results/SR/spain_urban/geotiff/HR__ROI_00035__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
sr4rs/results/SR/spain_urban/geotiff/HR__ROI_00036__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
sr4rs/results/SR/spain_urban/png/HR__ROI_00001__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
sr4rs/results/SR/spain_urban/png/HR__ROI_00002__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
sr4rs/results/SR/spain_urban/png/HR__ROI_00004__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
sr4rs/results/SR/spain_urban/png/HR__ROI_00006__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
sr4rs/results/SR/spain_urban/png/HR__ROI_00007__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
sr4rs/results/SR/spain_urban/png/HR__ROI_00009__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
sr4rs/results/SR/spain_urban/png/HR__ROI_00010__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
sr4rs/results/SR/spain_urban/png/HR__ROI_00011__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
sr4rs/results/SR/spain_urban/png/HR__ROI_00013__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
sr4rs/results/SR/spain_urban/png/HR__ROI_00014__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
sr4rs/results/SR/spain_urban/png/HR__ROI_00026__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
sr4rs/results/SR/spain_urban/png/HR__ROI_00027__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
sr4rs/results/SR/spain_urban/png/HR__ROI_00028__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
sr4rs/results/SR/spain_urban/png/HR__ROI_00030__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
sr4rs/results/SR/spain_urban/png/HR__ROI_00031__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
sr4rs/results/SR/spain_urban/png/HR__ROI_00032__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
sr4rs/results/SR/spain_urban/png/HR__ROI_00033__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
sr4rs/results/SR/spain_urban/png/HR__ROI_00034__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
sr4rs/results/SR/spain_urban/png/HR__ROI_00035__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
sr4rs/results/SR/spain_urban/png/HR__ROI_00036__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
sr4rs/results/SR/spot/geotiff/ROI_0037__IMG_SPOT6_MS_201702050755046_ORT_ff6f9336-c21e-4081-c072-6038d0f53297_R1C1.tif
sr4rs/results/SR/spot/geotiff/ROI_0050__IMG_SPOT6_MS_201702220817301_ORT_7f0f2ccb-d59c-41eb-c1f3-27856284016a_R1C1.tif
sr4rs/results/SR/spot/geotiff/ROI_0117__IMG_SPOT6_MS_201705131607216_ORT_97c1e2b1-ebe8-49d9-c9d0-ae9370a8424a_R1C1.tif
sr4rs/results/SR/spot/geotiff/ROI_0803__IMG_SPOT6_MS_201903020839263_ORT_fd4ee860-4321-4bb8-cb00-fbc163d2b90f_R1C1.tif
sr4rs/results/SR/spot/geotiff/ROI_0967__IMG_SPOT6_MS_201910190953241_ORT_a0e55b71-b9f2-4fef-cfc4-8b8e375e47a5_R1C1.tif
sr4rs/results/SR/spot/geotiff/ROI_1647__IMG_SPOT6_MS_202107211821022_ORT_6cb84e1b-0eae-4daa-cdbe-9a27b94d2244_R1C1.tif
sr4rs/results/SR/spot/geotiff/ROI_2603__IMG_SPOT7_MS_201907190724338_ORT_2abb8cd4-5a93-4c58-ccb3-697c70f52dce_R1C1.tif
sr4rs/results/SR/spot/geotiff/ROI_3126__IMG_SPOT7_MS_202011250946543_ORT_aa60c730-be23-4286-c20f-2629d82909ca_R1C1.tif
sr4rs/results/SR/spot/geotiff/ROI_3171__IMG_SPOT7_MS_202101070832438_ORT_821c8f18-7eb9-4438-c475-4a193446fb48_R1C1.tif
sr4rs/results/SR/spot/png/ROI_0037__IMG_SPOT6_MS_201702050755046_ORT_ff6f9336-c21e-4081-c072-6038d0f53297_R1C1.png
sr4rs/results/SR/spot/png/ROI_0050__IMG_SPOT6_MS_201702220817301_ORT_7f0f2ccb-d59c-41eb-c1f3-27856284016a_R1C1.png
sr4rs/results/SR/spot/png/ROI_0117__IMG_SPOT6_MS_201705131607216_ORT_97c1e2b1-ebe8-49d9-c9d0-ae9370a8424a_R1C1.png
sr4rs/results/SR/spot/png/ROI_0803__IMG_SPOT6_MS_201903020839263_ORT_fd4ee860-4321-4bb8-cb00-fbc163d2b90f_R1C1.png
sr4rs/results/SR/spot/png/ROI_0967__IMG_SPOT6_MS_201910190953241_ORT_a0e55b71-b9f2-4fef-cfc4-8b8e375e47a5_R1C1.png
sr4rs/results/SR/spot/png/ROI_1647__IMG_SPOT6_MS_202107211821022_ORT_6cb84e1b-0eae-4daa-cdbe-9a27b94d2244_R1C1.png
sr4rs/results/SR/spot/png/ROI_2603__IMG_SPOT7_MS_201907190724338_ORT_2abb8cd4-5a93-4c58-ccb3-697c70f52dce_R1C1.png
sr4rs/results/SR/spot/png/ROI_3126__IMG_SPOT7_MS_202011250946543_ORT_aa60c730-be23-4286-c20f-2629d82909ca_R1C1.png
sr4rs/results/SR/spot/png/ROI_3171__IMG_SPOT7_MS_202101070832438_ORT_821c8f18-7eb9-4438-c475-4a193446fb48_R1C1.png
sr4rs/results/SR/venus/geotiff/ROI_0005.tif
sr4rs/results/SR/venus/geotiff/ROI_0006.tif
sr4rs/results/SR/venus/geotiff/ROI_0007.tif
sr4rs/results/SR/venus/geotiff/ROI_0008.tif
sr4rs/results/SR/venus/geotiff/ROI_0009.tif
sr4rs/results/SR/venus/geotiff/ROI_0010.tif
sr4rs/results/SR/venus/geotiff/ROI_0011.tif
sr4rs/results/SR/venus/geotiff/ROI_0015.tif
sr4rs/results/SR/venus/geotiff/ROI_0017.tif
sr4rs/results/SR/venus/geotiff/ROI_0018.tif
sr4rs/results/SR/venus/geotiff/ROI_0019.tif
sr4rs/results/SR/venus/geotiff/ROI_0020.tif
sr4rs/results/SR/venus/geotiff/ROI_0021.tif
sr4rs/results/SR/venus/geotiff/ROI_0023.tif
sr4rs/results/SR/venus/geotiff/ROI_0024.tif
sr4rs/results/SR/venus/geotiff/ROI_0025.tif
sr4rs/results/SR/venus/geotiff/ROI_0026.tif
sr4rs/results/SR/venus/geotiff/ROI_0027.tif
sr4rs/results/SR/venus/geotiff/ROI_0029.tif
sr4rs/results/SR/venus/geotiff/ROI_0030.tif
sr4rs/results/SR/venus/geotiff/ROI_0031.tif
sr4rs/results/SR/venus/geotiff/ROI_0032.tif
sr4rs/results/SR/venus/geotiff/ROI_0033.tif
sr4rs/results/SR/venus/geotiff/ROI_0034.tif
sr4rs/results/SR/venus/geotiff/ROI_0036.tif
sr4rs/results/SR/venus/geotiff/ROI_0037.tif
sr4rs/results/SR/venus/geotiff/ROI_0038.tif
sr4rs/results/SR/venus/geotiff/ROI_0040.tif
sr4rs/results/SR/venus/geotiff/ROI_0041.tif
sr4rs/results/SR/venus/geotiff/ROI_0042.tif
sr4rs/results/SR/venus/geotiff/ROI_0045.tif
sr4rs/results/SR/venus/geotiff/ROI_0046.tif
sr4rs/results/SR/venus/geotiff/ROI_0049.tif
sr4rs/results/SR/venus/geotiff/ROI_0050.tif
sr4rs/results/SR/venus/geotiff/ROI_0051.tif
sr4rs/results/SR/venus/geotiff/ROI_0055.tif
sr4rs/results/SR/venus/geotiff/ROI_0059.tif
sr4rs/results/SR/venus/geotiff/ROI_0061.tif
sr4rs/results/SR/venus/geotiff/ROI_0063.tif
sr4rs/results/SR/venus/geotiff/ROI_0066.tif
sr4rs/results/SR/venus/geotiff/ROI_0067.tif
sr4rs/results/SR/venus/geotiff/ROI_0068.tif
sr4rs/results/SR/venus/geotiff/ROI_0069.tif
sr4rs/results/SR/venus/geotiff/ROI_0072.tif
sr4rs/results/SR/venus/geotiff/ROI_0073.tif
sr4rs/results/SR/venus/geotiff/ROI_0074.tif
sr4rs/results/SR/venus/geotiff/ROI_0075.tif
sr4rs/results/SR/venus/geotiff/ROI_0077.tif
sr4rs/results/SR/venus/geotiff/ROI_0078.tif
sr4rs/results/SR/venus/geotiff/ROI_0082.tif
sr4rs/results/SR/venus/geotiff/ROI_0085.tif
sr4rs/results/SR/venus/geotiff/ROI_0089.tif
sr4rs/results/SR/venus/geotiff/ROI_0098.tif
sr4rs/results/SR/venus/geotiff/ROI_0111.tif
sr4rs/results/SR/venus/geotiff/ROI_0112.tif
sr4rs/results/SR/venus/geotiff/ROI_0115.tif
sr4rs/results/SR/venus/geotiff/ROI_0116.tif
sr4rs/results/SR/venus/geotiff/ROI_0117.tif
sr4rs/results/SR/venus/geotiff/ROI_0118.tif
sr4rs/results/SR/venus/png/ROI_0005.png
sr4rs/results/SR/venus/png/ROI_0006.png
sr4rs/results/SR/venus/png/ROI_0007.png
sr4rs/results/SR/venus/png/ROI_0008.png
sr4rs/results/SR/venus/png/ROI_0009.png
sr4rs/results/SR/venus/png/ROI_0010.png
sr4rs/results/SR/venus/png/ROI_0011.png
sr4rs/results/SR/venus/png/ROI_0015.png
sr4rs/results/SR/venus/png/ROI_0017.png
sr4rs/results/SR/venus/png/ROI_0018.png
sr4rs/results/SR/venus/png/ROI_0019.png
sr4rs/results/SR/venus/png/ROI_0020.png
sr4rs/results/SR/venus/png/ROI_0021.png
sr4rs/results/SR/venus/png/ROI_0023.png
sr4rs/results/SR/venus/png/ROI_0024.png
sr4rs/results/SR/venus/png/ROI_0025.png
sr4rs/results/SR/venus/png/ROI_0026.png
sr4rs/results/SR/venus/png/ROI_0027.png
sr4rs/results/SR/venus/png/ROI_0029.png
sr4rs/results/SR/venus/png/ROI_0030.png
sr4rs/results/SR/venus/png/ROI_0031.png
sr4rs/results/SR/venus/png/ROI_0032.png
sr4rs/results/SR/venus/png/ROI_0033.png
sr4rs/results/SR/venus/png/ROI_0034.png
sr4rs/results/SR/venus/png/ROI_0036.png
sr4rs/results/SR/venus/png/ROI_0037.png
sr4rs/results/SR/venus/png/ROI_0038.png
sr4rs/results/SR/venus/png/ROI_0040.png
sr4rs/results/SR/venus/png/ROI_0041.png
sr4rs/results/SR/venus/png/ROI_0042.png
sr4rs/results/SR/venus/png/ROI_0045.png
sr4rs/results/SR/venus/png/ROI_0046.png
sr4rs/results/SR/venus/png/ROI_0049.png
sr4rs/results/SR/venus/png/ROI_0050.png
sr4rs/results/SR/venus/png/ROI_0051.png
sr4rs/results/SR/venus/png/ROI_0055.png
sr4rs/results/SR/venus/png/ROI_0059.png
sr4rs/results/SR/venus/png/ROI_0061.png
sr4rs/results/SR/venus/png/ROI_0063.png
sr4rs/results/SR/venus/png/ROI_0066.png
sr4rs/results/SR/venus/png/ROI_0067.png
sr4rs/results/SR/venus/png/ROI_0068.png
sr4rs/results/SR/venus/png/ROI_0069.png
sr4rs/results/SR/venus/png/ROI_0072.png
sr4rs/results/SR/venus/png/ROI_0073.png
sr4rs/results/SR/venus/png/ROI_0074.png
sr4rs/results/SR/venus/png/ROI_0075.png
sr4rs/results/SR/venus/png/ROI_0077.png
sr4rs/results/SR/venus/png/ROI_0078.png
sr4rs/results/SR/venus/png/ROI_0082.png
sr4rs/results/SR/venus/png/ROI_0085.png
sr4rs/results/SR/venus/png/ROI_0089.png
sr4rs/results/SR/venus/png/ROI_0098.png
sr4rs/results/SR/venus/png/ROI_0111.png
sr4rs/results/SR/venus/png/ROI_0112.png
sr4rs/results/SR/venus/png/ROI_0115.png
sr4rs/results/SR/venus/png/ROI_0116.png
sr4rs/results/SR/venus/png/ROI_0117.png
sr4rs/results/SR/venus/png/ROI_0118.png
sr4rs/run.py
sr4rs/sr4rs.zip
sr4rs/utils.py
sr4rs/weights/cesbio_model/sr4rs_sentinel2_bands4328_france2020_savedmodel/saved_model.pb
sr4rs/weights/cesbio_model/sr4rs_sentinel2_bands4328_france2020_savedmodel/variables/variables.data-00000-of-00001
sr4rs/weights/cesbio_model/sr4rs_sentinel2_bands4328_france2020_savedmodel/variables/variables.index
superimage/results/SR/naip/geotiff/HR__ROI_00006__m_4411338_ne_12_060_20210917.tif
superimage/results/SR/naip/geotiff/HR__ROI_00270__m_3809943_sw_14_060_20210909.tif
superimage/results/SR/naip/geotiff/HR__ROI_00319__m_3609931_se_14_060_20190627.tif
superimage/results/SR/naip/geotiff/HR__ROI_00399__m_3809910_sw_14_060_20210909.tif
superimage/results/SR/naip/geotiff/HR__ROI_00438__m_3409938_ne_14_060_20210919.tif
superimage/results/SR/naip/geotiff/HR__ROI_00456__m_3510353_sw_13_060_20200521.tif
superimage/results/SR/naip/geotiff/HR__ROI_00565__m_3410123_se_14_060_20200828.tif
superimage/results/SR/naip/geotiff/HR__ROI_01566__m_3211262_nw_12_060_20211113.tif
superimage/results/SR/naip/geotiff/HR__ROI_01619__m_4211110_ne_12_060_20190926.tif
superimage/results/SR/naip/geotiff/HR__ROI_01750__m_4011251_se_12_060_20210925.tif
superimage/results/SR/naip/geotiff/HR__ROI_02524__m_2709848_sw_14_060_20200501.tif
superimage/results/SR/naip/geotiff/HR__ROI_02604__m_4110621_sw_13_060_20190711.tif
superimage/results/SR/naip/geotiff/HR__ROI_03017__m_3410355_se_13_060_20200521.tif
superimage/results/SR/naip/geotiff/HR__ROI_03107__m_3809920_sw_14_060_20210909.tif
superimage/results/SR/naip/geotiff/HR__ROI_03117__m_4110739_sw_13_060_20190711.tif
superimage/results/SR/naip/geotiff/HR__ROI_03127__m_3211246_nw_12_060_20211113.tif
superimage/results/SR/naip/geotiff/HR__ROI_03578__m_3609959_nw_14_060_20210919.tif
superimage/results/SR/naip/geotiff/HR__ROI_03696__m_3809959_nw_14_060_20210909.tif
superimage/results/SR/naip/geotiff/HR__ROI_03715__m_2910329_sw_13_060_20201008.tif
superimage/results/SR/naip/geotiff/HR__ROI_03961__m_3210835_se_12_060_20200517.tif
superimage/results/SR/naip/geotiff/HR__ROI_04886__m_3509819_nw_14_060_20210906.tif
superimage/results/SR/naip/geotiff/HR__ROI_05095__m_4410348_nw_13_060_20211005.tif
superimage/results/SR/naip/geotiff/HR__ROI_05262__m_3410713_nw_13_060_20200516.tif
superimage/results/SR/naip/geotiff/HR__ROI_05509__m_3311331_sw_12_060_20211204.tif
superimage/results/SR/naip/geotiff/HR__ROI_05609__m_3809944_se_14_060_20210909.tif
superimage/results/SR/naip/geotiff/HR__ROI_05839__m_3709911_sw_14_060_20190712.tif
superimage/results/SR/naip/geotiff/HR__ROI_06305__m_4511313_se_12_060_20211002.tif
superimage/results/SR/naip/geotiff/HR__ROI_06588__m_3410304_nw_13_060_20200521.tif
superimage/results/SR/naip/geotiff/HR__ROI_06795__m_2910038_sw_14_060_20201011.tif
superimage/results/SR/naip/geotiff/HR__ROI_06937__m_4509541_ne_15_060_20190808.tif
superimage/results/SR/naip/geotiff/HR__ROI_07145__m_3410332_nw_13_060_20200521.tif
superimage/results/SR/naip/geotiff/HR__ROI_07401__m_4110136_sw_14_060_20200729.tif
superimage/results/SR/naip/geotiff/HR__ROI_07911__m_3210860_se_12_060_20200517.tif
superimage/results/SR/naip/geotiff/HR__ROI_08114__m_3809933_sw_14_060_20210909.tif
superimage/results/SR/naip/geotiff/HR__ROI_08463__m_3809960_ne_14_060_20210909.tif
superimage/results/SR/naip/geotiff/HR__ROI_08631__m_3409947_nw_14_060_20210919.tif
superimage/results/SR/naip/geotiff/HR__ROI_08872__m_4210422_sw_13_060_20190711.tif
superimage/results/SR/naip/geotiff/HR__ROI_08930__m_3410719_se_13_060_20200516.tif
superimage/results/SR/naip/geotiff/HR__ROI_09164__m_3210836_ne_12_060_20200517.tif
superimage/results/SR/naip/geotiff/HR__ROI_09337__m_4609958_nw_14_060_20200818.tif
superimage/results/SR/naip/geotiff/HR__ROI_09518__m_4309958_nw_14_060_20210917.tif
superimage/results/SR/naip/geotiff/HR__ROI_10317__m_3211226_se_12_060_20211113.tif
superimage/results/SR/naip/geotiff/HR__ROI_10611__m_4411335_sw_12_060_20210925.tif
superimage/results/SR/naip/geotiff/HR__ROI_10807__m_4012212_nw_10_060_20200713.tif
superimage/results/SR/naip/geotiff/HR__ROI_10848__m_4310032_se_14_060_20210917.tif
superimage/results/SR/naip/geotiff/HR__ROI_10903__m_4809957_sw_14_060_20190715.tif
superimage/results/SR/naip/geotiff/HR__ROI_11195__m_4210611_se_13_060_20190711.tif
superimage/results/SR/naip/geotiff/HR__ROI_11495__m_4210652_ne_13_060_20190711.tif
superimage/results/SR/naip/geotiff/HR__ROI_11533__m_3709838_ne_14_060_20190712.tif
superimage/results/SR/naip/geotiff/HR__ROI_11628__m_3410947_ne_12_060_20211115.tif
superimage/results/SR/naip/geotiff/HR__ROI_11746__m_4610048_sw_14_060_20200818.tif
superimage/results/SR/naip/geotiff/HR__ROI_12264__m_4211664_ne_11_060_20190714.tif
superimage/results/SR/naip/geotiff/HR__ROI_12389__m_3409511_sw_15_060_20210923.tif
superimage/results/SR/naip/geotiff/HR__ROI_12628__m_4109961_nw_14_060_20200808.tif
superimage/results/SR/naip/geotiff/HR__ROI_13050__m_3210044_sw_14_060_20200925.tif
superimage/results/SR/naip/geotiff/HR__ROI_13075__m_3411354_sw_12_060_20211204.tif
superimage/results/SR/naip/geotiff/HR__ROI_13496__m_4809741_ne_14_060_20210928.tif
superimage/results/SR/naip/geotiff/HR__ROI_13498__m_2910331_nw_13_060_20201007.tif
superimage/results/SR/naip/geotiff/HR__ROI_13507__m_4311655_ne_11_060_20190714.tif
superimage/results/SR/naip/geotiff/HR__ROI_13526__m_2809723_nw_14_060_20200501.tif
superimage/results/SR/naip/geotiff/HR__ROI_13742__m_2910315_nw_13_060_20201007.tif
superimage/results/SR/naip/geotiff/HR__ROI_13889__m_3110514_sw_13_060_20201011.tif
superimage/results/SR/naip/png/HR__ROI_00006__m_4411338_ne_12_060_20210917.png
superimage/results/SR/naip/png/HR__ROI_00270__m_3809943_sw_14_060_20210909.png
superimage/results/SR/naip/png/HR__ROI_00319__m_3609931_se_14_060_20190627.png
superimage/results/SR/naip/png/HR__ROI_00399__m_3809910_sw_14_060_20210909.png
superimage/results/SR/naip/png/HR__ROI_00438__m_3409938_ne_14_060_20210919.png
superimage/results/SR/naip/png/HR__ROI_00456__m_3510353_sw_13_060_20200521.png
superimage/results/SR/naip/png/HR__ROI_00565__m_3410123_se_14_060_20200828.png
superimage/results/SR/naip/png/HR__ROI_01566__m_3211262_nw_12_060_20211113.png
superimage/results/SR/naip/png/HR__ROI_01619__m_4211110_ne_12_060_20190926.png
superimage/results/SR/naip/png/HR__ROI_01750__m_4011251_se_12_060_20210925.png
superimage/results/SR/naip/png/HR__ROI_02524__m_2709848_sw_14_060_20200501.png
superimage/results/SR/naip/png/HR__ROI_02604__m_4110621_sw_13_060_20190711.png
superimage/results/SR/naip/png/HR__ROI_03017__m_3410355_se_13_060_20200521.png
superimage/results/SR/naip/png/HR__ROI_03107__m_3809920_sw_14_060_20210909.png
superimage/results/SR/naip/png/HR__ROI_03117__m_4110739_sw_13_060_20190711.png
superimage/results/SR/naip/png/HR__ROI_03127__m_3211246_nw_12_060_20211113.png
superimage/results/SR/naip/png/HR__ROI_03578__m_3609959_nw_14_060_20210919.png
superimage/results/SR/naip/png/HR__ROI_03696__m_3809959_nw_14_060_20210909.png
superimage/results/SR/naip/png/HR__ROI_03715__m_2910329_sw_13_060_20201008.png
superimage/results/SR/naip/png/HR__ROI_03961__m_3210835_se_12_060_20200517.png
superimage/results/SR/naip/png/HR__ROI_04886__m_3509819_nw_14_060_20210906.png
superimage/results/SR/naip/png/HR__ROI_05095__m_4410348_nw_13_060_20211005.png
superimage/results/SR/naip/png/HR__ROI_05262__m_3410713_nw_13_060_20200516.png
superimage/results/SR/naip/png/HR__ROI_05509__m_3311331_sw_12_060_20211204.png
superimage/results/SR/naip/png/HR__ROI_05609__m_3809944_se_14_060_20210909.png
superimage/results/SR/naip/png/HR__ROI_05839__m_3709911_sw_14_060_20190712.png
superimage/results/SR/naip/png/HR__ROI_06305__m_4511313_se_12_060_20211002.png
superimage/results/SR/naip/png/HR__ROI_06588__m_3410304_nw_13_060_20200521.png
superimage/results/SR/naip/png/HR__ROI_06795__m_2910038_sw_14_060_20201011.png
superimage/results/SR/naip/png/HR__ROI_06937__m_4509541_ne_15_060_20190808.png
superimage/results/SR/naip/png/HR__ROI_07145__m_3410332_nw_13_060_20200521.png
superimage/results/SR/naip/png/HR__ROI_07401__m_4110136_sw_14_060_20200729.png
superimage/results/SR/naip/png/HR__ROI_07911__m_3210860_se_12_060_20200517.png
superimage/results/SR/naip/png/HR__ROI_08114__m_3809933_sw_14_060_20210909.png
superimage/results/SR/naip/png/HR__ROI_08463__m_3809960_ne_14_060_20210909.png
superimage/results/SR/naip/png/HR__ROI_08631__m_3409947_nw_14_060_20210919.png
superimage/results/SR/naip/png/HR__ROI_08872__m_4210422_sw_13_060_20190711.png
superimage/results/SR/naip/png/HR__ROI_08930__m_3410719_se_13_060_20200516.png
superimage/results/SR/naip/png/HR__ROI_09164__m_3210836_ne_12_060_20200517.png
superimage/results/SR/naip/png/HR__ROI_09337__m_4609958_nw_14_060_20200818.png
superimage/results/SR/naip/png/HR__ROI_09518__m_4309958_nw_14_060_20210917.png
superimage/results/SR/naip/png/HR__ROI_10317__m_3211226_se_12_060_20211113.png
superimage/results/SR/naip/png/HR__ROI_10611__m_4411335_sw_12_060_20210925.png
superimage/results/SR/naip/png/HR__ROI_10807__m_4012212_nw_10_060_20200713.png
superimage/results/SR/naip/png/HR__ROI_10848__m_4310032_se_14_060_20210917.png
superimage/results/SR/naip/png/HR__ROI_10903__m_4809957_sw_14_060_20190715.png
superimage/results/SR/naip/png/HR__ROI_11195__m_4210611_se_13_060_20190711.png
superimage/results/SR/naip/png/HR__ROI_11495__m_4210652_ne_13_060_20190711.png
superimage/results/SR/naip/png/HR__ROI_11533__m_3709838_ne_14_060_20190712.png
superimage/results/SR/naip/png/HR__ROI_11628__m_3410947_ne_12_060_20211115.png
superimage/results/SR/naip/png/HR__ROI_11746__m_4610048_sw_14_060_20200818.png
superimage/results/SR/naip/png/HR__ROI_12264__m_4211664_ne_11_060_20190714.png
superimage/results/SR/naip/png/HR__ROI_12389__m_3409511_sw_15_060_20210923.png
superimage/results/SR/naip/png/HR__ROI_12628__m_4109961_nw_14_060_20200808.png
superimage/results/SR/naip/png/HR__ROI_13050__m_3210044_sw_14_060_20200925.png
superimage/results/SR/naip/png/HR__ROI_13075__m_3411354_sw_12_060_20211204.png
superimage/results/SR/naip/png/HR__ROI_13496__m_4809741_ne_14_060_20210928.png
superimage/results/SR/naip/png/HR__ROI_13498__m_2910331_nw_13_060_20201007.png
superimage/results/SR/naip/png/HR__ROI_13507__m_4311655_ne_11_060_20190714.png
superimage/results/SR/naip/png/HR__ROI_13526__m_2809723_nw_14_060_20200501.png
superimage/results/SR/naip/png/HR__ROI_13742__m_2910315_nw_13_060_20201007.png
superimage/results/SR/naip/png/HR__ROI_13889__m_3110514_sw_13_060_20201011.png
superimage/results/SR/spain_crops/geotiff/HR__ROI_00001__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
superimage/results/SR/spain_crops/geotiff/HR__ROI_00002__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
superimage/results/SR/spain_crops/geotiff/HR__ROI_00003__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
superimage/results/SR/spain_crops/geotiff/HR__ROI_00004__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
superimage/results/SR/spain_crops/geotiff/HR__ROI_00005__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
superimage/results/SR/spain_crops/geotiff/HR__ROI_00006__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
superimage/results/SR/spain_crops/geotiff/HR__ROI_00007__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
superimage/results/SR/spain_crops/geotiff/HR__ROI_00008__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
superimage/results/SR/spain_crops/geotiff/HR__ROI_00010__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
superimage/results/SR/spain_crops/geotiff/HR__ROI_00011__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
superimage/results/SR/spain_crops/geotiff/HR__ROI_00012__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
superimage/results/SR/spain_crops/geotiff/HR__ROI_00013__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
superimage/results/SR/spain_crops/geotiff/HR__ROI_00014__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
superimage/results/SR/spain_crops/geotiff/HR__ROI_00015__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
superimage/results/SR/spain_crops/geotiff/HR__ROI_00016__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
superimage/results/SR/spain_crops/geotiff/HR__ROI_00017__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
superimage/results/SR/spain_crops/geotiff/HR__ROI_00019__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0722-1.tif
superimage/results/SR/spain_crops/geotiff/HR__ROI_00023__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
superimage/results/SR/spain_crops/geotiff/HR__ROI_00024__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
superimage/results/SR/spain_crops/geotiff/HR__ROI_00025__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
superimage/results/SR/spain_crops/geotiff/HR__ROI_00026__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
superimage/results/SR/spain_crops/geotiff/HR__ROI_00027__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
superimage/results/SR/spain_crops/geotiff/HR__ROI_00028__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
superimage/results/SR/spain_crops/geotiff/HR__ROI_00030__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
superimage/results/SR/spain_crops/geotiff/HR__ROI_00031__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
superimage/results/SR/spain_crops/geotiff/HR__ROI_00032__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
superimage/results/SR/spain_crops/geotiff/HR__ROI_00033__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
superimage/results/SR/spain_crops/geotiff/HR__ROI_00034__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
superimage/results/SR/spain_crops/png/HR__ROI_00001__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
superimage/results/SR/spain_crops/png/HR__ROI_00002__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
superimage/results/SR/spain_crops/png/HR__ROI_00003__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
superimage/results/SR/spain_crops/png/HR__ROI_00004__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
superimage/results/SR/spain_crops/png/HR__ROI_00005__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
superimage/results/SR/spain_crops/png/HR__ROI_00006__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
superimage/results/SR/spain_crops/png/HR__ROI_00007__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
superimage/results/SR/spain_crops/png/HR__ROI_00008__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
superimage/results/SR/spain_crops/png/HR__ROI_00010__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
superimage/results/SR/spain_crops/png/HR__ROI_00011__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
superimage/results/SR/spain_crops/png/HR__ROI_00012__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
superimage/results/SR/spain_crops/png/HR__ROI_00013__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
superimage/results/SR/spain_crops/png/HR__ROI_00014__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
superimage/results/SR/spain_crops/png/HR__ROI_00015__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
superimage/results/SR/spain_crops/png/HR__ROI_00016__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
superimage/results/SR/spain_crops/png/HR__ROI_00017__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
superimage/results/SR/spain_crops/png/HR__ROI_00019__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0722-1.png
superimage/results/SR/spain_crops/png/HR__ROI_00023__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
superimage/results/SR/spain_crops/png/HR__ROI_00024__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
superimage/results/SR/spain_crops/png/HR__ROI_00025__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
superimage/results/SR/spain_crops/png/HR__ROI_00026__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
superimage/results/SR/spain_crops/png/HR__ROI_00027__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
superimage/results/SR/spain_crops/png/HR__ROI_00028__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
superimage/results/SR/spain_crops/png/HR__ROI_00030__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
superimage/results/SR/spain_crops/png/HR__ROI_00031__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
superimage/results/SR/spain_crops/png/HR__ROI_00032__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
superimage/results/SR/spain_crops/png/HR__ROI_00033__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
superimage/results/SR/spain_crops/png/HR__ROI_00034__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
superimage/results/SR/spain_urban/geotiff/HR__ROI_00001__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
superimage/results/SR/spain_urban/geotiff/HR__ROI_00002__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
superimage/results/SR/spain_urban/geotiff/HR__ROI_00004__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
superimage/results/SR/spain_urban/geotiff/HR__ROI_00006__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
superimage/results/SR/spain_urban/geotiff/HR__ROI_00007__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
superimage/results/SR/spain_urban/geotiff/HR__ROI_00009__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
superimage/results/SR/spain_urban/geotiff/HR__ROI_00010__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
superimage/results/SR/spain_urban/geotiff/HR__ROI_00011__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
superimage/results/SR/spain_urban/geotiff/HR__ROI_00013__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
superimage/results/SR/spain_urban/geotiff/HR__ROI_00014__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
superimage/results/SR/spain_urban/geotiff/HR__ROI_00026__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
superimage/results/SR/spain_urban/geotiff/HR__ROI_00027__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
superimage/results/SR/spain_urban/geotiff/HR__ROI_00028__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
superimage/results/SR/spain_urban/geotiff/HR__ROI_00030__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
superimage/results/SR/spain_urban/geotiff/HR__ROI_00031__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
superimage/results/SR/spain_urban/geotiff/HR__ROI_00032__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
superimage/results/SR/spain_urban/geotiff/HR__ROI_00033__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
superimage/results/SR/spain_urban/geotiff/HR__ROI_00034__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
superimage/results/SR/spain_urban/geotiff/HR__ROI_00035__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
superimage/results/SR/spain_urban/geotiff/HR__ROI_00036__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
superimage/results/SR/spain_urban/png/HR__ROI_00001__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
superimage/results/SR/spain_urban/png/HR__ROI_00002__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
superimage/results/SR/spain_urban/png/HR__ROI_00004__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
superimage/results/SR/spain_urban/png/HR__ROI_00006__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
superimage/results/SR/spain_urban/png/HR__ROI_00007__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
superimage/results/SR/spain_urban/png/HR__ROI_00009__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
superimage/results/SR/spain_urban/png/HR__ROI_00010__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
superimage/results/SR/spain_urban/png/HR__ROI_00011__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
superimage/results/SR/spain_urban/png/HR__ROI_00013__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
superimage/results/SR/spain_urban/png/HR__ROI_00014__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
superimage/results/SR/spain_urban/png/HR__ROI_00026__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
superimage/results/SR/spain_urban/png/HR__ROI_00027__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
superimage/results/SR/spain_urban/png/HR__ROI_00028__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
superimage/results/SR/spain_urban/png/HR__ROI_00030__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
superimage/results/SR/spain_urban/png/HR__ROI_00031__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
superimage/results/SR/spain_urban/png/HR__ROI_00032__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
superimage/results/SR/spain_urban/png/HR__ROI_00033__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
superimage/results/SR/spain_urban/png/HR__ROI_00034__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
superimage/results/SR/spain_urban/png/HR__ROI_00035__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
superimage/results/SR/spain_urban/png/HR__ROI_00036__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
superimage/results/SR/spot/geotiff/ROI_0037__IMG_SPOT6_MS_201702050755046_ORT_ff6f9336-c21e-4081-c072-6038d0f53297_R1C1.tif
superimage/results/SR/spot/geotiff/ROI_0050__IMG_SPOT6_MS_201702220817301_ORT_7f0f2ccb-d59c-41eb-c1f3-27856284016a_R1C1.tif
superimage/results/SR/spot/geotiff/ROI_0117__IMG_SPOT6_MS_201705131607216_ORT_97c1e2b1-ebe8-49d9-c9d0-ae9370a8424a_R1C1.tif
superimage/results/SR/spot/geotiff/ROI_0803__IMG_SPOT6_MS_201903020839263_ORT_fd4ee860-4321-4bb8-cb00-fbc163d2b90f_R1C1.tif
superimage/results/SR/spot/geotiff/ROI_0967__IMG_SPOT6_MS_201910190953241_ORT_a0e55b71-b9f2-4fef-cfc4-8b8e375e47a5_R1C1.tif
superimage/results/SR/spot/geotiff/ROI_1647__IMG_SPOT6_MS_202107211821022_ORT_6cb84e1b-0eae-4daa-cdbe-9a27b94d2244_R1C1.tif
superimage/results/SR/spot/geotiff/ROI_2603__IMG_SPOT7_MS_201907190724338_ORT_2abb8cd4-5a93-4c58-ccb3-697c70f52dce_R1C1.tif
superimage/results/SR/spot/geotiff/ROI_3126__IMG_SPOT7_MS_202011250946543_ORT_aa60c730-be23-4286-c20f-2629d82909ca_R1C1.tif
superimage/results/SR/spot/geotiff/ROI_3171__IMG_SPOT7_MS_202101070832438_ORT_821c8f18-7eb9-4438-c475-4a193446fb48_R1C1.tif
superimage/results/SR/spot/png/ROI_0037__IMG_SPOT6_MS_201702050755046_ORT_ff6f9336-c21e-4081-c072-6038d0f53297_R1C1.png
superimage/results/SR/spot/png/ROI_0050__IMG_SPOT6_MS_201702220817301_ORT_7f0f2ccb-d59c-41eb-c1f3-27856284016a_R1C1.png
superimage/results/SR/spot/png/ROI_0117__IMG_SPOT6_MS_201705131607216_ORT_97c1e2b1-ebe8-49d9-c9d0-ae9370a8424a_R1C1.png
superimage/results/SR/spot/png/ROI_0803__IMG_SPOT6_MS_201903020839263_ORT_fd4ee860-4321-4bb8-cb00-fbc163d2b90f_R1C1.png
superimage/results/SR/spot/png/ROI_0967__IMG_SPOT6_MS_201910190953241_ORT_a0e55b71-b9f2-4fef-cfc4-8b8e375e47a5_R1C1.png
superimage/results/SR/spot/png/ROI_1647__IMG_SPOT6_MS_202107211821022_ORT_6cb84e1b-0eae-4daa-cdbe-9a27b94d2244_R1C1.png
superimage/results/SR/spot/png/ROI_2603__IMG_SPOT7_MS_201907190724338_ORT_2abb8cd4-5a93-4c58-ccb3-697c70f52dce_R1C1.png
superimage/results/SR/spot/png/ROI_3126__IMG_SPOT7_MS_202011250946543_ORT_aa60c730-be23-4286-c20f-2629d82909ca_R1C1.png
superimage/results/SR/spot/png/ROI_3171__IMG_SPOT7_MS_202101070832438_ORT_821c8f18-7eb9-4438-c475-4a193446fb48_R1C1.png
superimage/results/SR/venus/geotiff/ROI_0005.tif
superimage/results/SR/venus/geotiff/ROI_0006.tif
superimage/results/SR/venus/geotiff/ROI_0007.tif
superimage/results/SR/venus/geotiff/ROI_0008.tif
superimage/results/SR/venus/geotiff/ROI_0009.tif
superimage/results/SR/venus/geotiff/ROI_0010.tif
superimage/results/SR/venus/geotiff/ROI_0011.tif
superimage/results/SR/venus/geotiff/ROI_0015.tif
superimage/results/SR/venus/geotiff/ROI_0017.tif
superimage/results/SR/venus/geotiff/ROI_0018.tif
superimage/results/SR/venus/geotiff/ROI_0019.tif
superimage/results/SR/venus/geotiff/ROI_0020.tif
superimage/results/SR/venus/geotiff/ROI_0021.tif
superimage/results/SR/venus/geotiff/ROI_0023.tif
superimage/results/SR/venus/geotiff/ROI_0024.tif
superimage/results/SR/venus/geotiff/ROI_0025.tif
superimage/results/SR/venus/geotiff/ROI_0026.tif
superimage/results/SR/venus/geotiff/ROI_0027.tif
superimage/results/SR/venus/geotiff/ROI_0029.tif
superimage/results/SR/venus/geotiff/ROI_0030.tif
superimage/results/SR/venus/geotiff/ROI_0031.tif
superimage/results/SR/venus/geotiff/ROI_0032.tif
superimage/results/SR/venus/geotiff/ROI_0033.tif
superimage/results/SR/venus/geotiff/ROI_0034.tif
superimage/results/SR/venus/geotiff/ROI_0036.tif
superimage/results/SR/venus/geotiff/ROI_0037.tif
superimage/results/SR/venus/geotiff/ROI_0038.tif
superimage/results/SR/venus/geotiff/ROI_0040.tif
superimage/results/SR/venus/geotiff/ROI_0041.tif
superimage/results/SR/venus/geotiff/ROI_0042.tif
superimage/results/SR/venus/geotiff/ROI_0045.tif
superimage/results/SR/venus/geotiff/ROI_0046.tif
superimage/results/SR/venus/geotiff/ROI_0049.tif
superimage/results/SR/venus/geotiff/ROI_0050.tif
superimage/results/SR/venus/geotiff/ROI_0051.tif
superimage/results/SR/venus/geotiff/ROI_0055.tif
superimage/results/SR/venus/geotiff/ROI_0059.tif
superimage/results/SR/venus/geotiff/ROI_0061.tif
superimage/results/SR/venus/geotiff/ROI_0063.tif
superimage/results/SR/venus/geotiff/ROI_0066.tif
superimage/results/SR/venus/geotiff/ROI_0067.tif
superimage/results/SR/venus/geotiff/ROI_0068.tif
superimage/results/SR/venus/geotiff/ROI_0069.tif
superimage/results/SR/venus/geotiff/ROI_0072.tif
superimage/results/SR/venus/geotiff/ROI_0073.tif
superimage/results/SR/venus/geotiff/ROI_0074.tif
superimage/results/SR/venus/geotiff/ROI_0075.tif
superimage/results/SR/venus/geotiff/ROI_0077.tif
superimage/results/SR/venus/geotiff/ROI_0078.tif
superimage/results/SR/venus/geotiff/ROI_0082.tif
superimage/results/SR/venus/geotiff/ROI_0085.tif
superimage/results/SR/venus/geotiff/ROI_0089.tif
superimage/results/SR/venus/geotiff/ROI_0098.tif
superimage/results/SR/venus/geotiff/ROI_0111.tif
superimage/results/SR/venus/geotiff/ROI_0112.tif
superimage/results/SR/venus/geotiff/ROI_0115.tif
superimage/results/SR/venus/geotiff/ROI_0116.tif
superimage/results/SR/venus/geotiff/ROI_0117.tif
superimage/results/SR/venus/geotiff/ROI_0118.tif
superimage/results/SR/venus/png/ROI_0005.png
superimage/results/SR/venus/png/ROI_0006.png
superimage/results/SR/venus/png/ROI_0007.png
superimage/results/SR/venus/png/ROI_0008.png
superimage/results/SR/venus/png/ROI_0009.png
superimage/results/SR/venus/png/ROI_0010.png
superimage/results/SR/venus/png/ROI_0011.png
superimage/results/SR/venus/png/ROI_0015.png
superimage/results/SR/venus/png/ROI_0017.png
superimage/results/SR/venus/png/ROI_0018.png
superimage/results/SR/venus/png/ROI_0019.png
superimage/results/SR/venus/png/ROI_0020.png
superimage/results/SR/venus/png/ROI_0021.png
superimage/results/SR/venus/png/ROI_0023.png
superimage/results/SR/venus/png/ROI_0024.png
superimage/results/SR/venus/png/ROI_0025.png
superimage/results/SR/venus/png/ROI_0026.png
superimage/results/SR/venus/png/ROI_0027.png
superimage/results/SR/venus/png/ROI_0029.png
superimage/results/SR/venus/png/ROI_0030.png
superimage/results/SR/venus/png/ROI_0031.png
superimage/results/SR/venus/png/ROI_0032.png
superimage/results/SR/venus/png/ROI_0033.png
superimage/results/SR/venus/png/ROI_0034.png
superimage/results/SR/venus/png/ROI_0036.png
superimage/results/SR/venus/png/ROI_0037.png
superimage/results/SR/venus/png/ROI_0038.png
superimage/results/SR/venus/png/ROI_0040.png
superimage/results/SR/venus/png/ROI_0041.png
superimage/results/SR/venus/png/ROI_0042.png
superimage/results/SR/venus/png/ROI_0045.png
superimage/results/SR/venus/png/ROI_0046.png
superimage/results/SR/venus/png/ROI_0049.png
superimage/results/SR/venus/png/ROI_0050.png
superimage/results/SR/venus/png/ROI_0051.png
superimage/results/SR/venus/png/ROI_0055.png
superimage/results/SR/venus/png/ROI_0059.png
superimage/results/SR/venus/png/ROI_0061.png
superimage/results/SR/venus/png/ROI_0063.png
superimage/results/SR/venus/png/ROI_0066.png
superimage/results/SR/venus/png/ROI_0067.png
superimage/results/SR/venus/png/ROI_0068.png
superimage/results/SR/venus/png/ROI_0069.png
superimage/results/SR/venus/png/ROI_0072.png
superimage/results/SR/venus/png/ROI_0073.png
superimage/results/SR/venus/png/ROI_0074.png
superimage/results/SR/venus/png/ROI_0075.png
superimage/results/SR/venus/png/ROI_0077.png
superimage/results/SR/venus/png/ROI_0078.png
superimage/results/SR/venus/png/ROI_0082.png
superimage/results/SR/venus/png/ROI_0085.png
superimage/results/SR/venus/png/ROI_0089.png
superimage/results/SR/venus/png/ROI_0098.png
superimage/results/SR/venus/png/ROI_0111.png
superimage/results/SR/venus/png/ROI_0112.png
superimage/results/SR/venus/png/ROI_0115.png
superimage/results/SR/venus/png/ROI_0116.png
superimage/results/SR/venus/png/ROI_0117.png
superimage/results/SR/venus/png/ROI_0118.png
superimage/run.py
superimage/superimage.zip
superimage/utils.py
swin2_mose/libs.py
swin2_mose/model.py
swin2_mose/moe.py
swin2_mose/results/SR/naip/geotiff/HR__ROI_00006__m_4411338_ne_12_060_20210917.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_00270__m_3809943_sw_14_060_20210909.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_00319__m_3609931_se_14_060_20190627.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_00399__m_3809910_sw_14_060_20210909.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_00438__m_3409938_ne_14_060_20210919.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_00456__m_3510353_sw_13_060_20200521.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_00565__m_3410123_se_14_060_20200828.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_01566__m_3211262_nw_12_060_20211113.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_01619__m_4211110_ne_12_060_20190926.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_01750__m_4011251_se_12_060_20210925.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_02524__m_2709848_sw_14_060_20200501.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_02604__m_4110621_sw_13_060_20190711.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_03017__m_3410355_se_13_060_20200521.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_03107__m_3809920_sw_14_060_20210909.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_03117__m_4110739_sw_13_060_20190711.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_03127__m_3211246_nw_12_060_20211113.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_03578__m_3609959_nw_14_060_20210919.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_03696__m_3809959_nw_14_060_20210909.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_03715__m_2910329_sw_13_060_20201008.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_03961__m_3210835_se_12_060_20200517.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_04886__m_3509819_nw_14_060_20210906.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_05095__m_4410348_nw_13_060_20211005.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_05262__m_3410713_nw_13_060_20200516.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_05509__m_3311331_sw_12_060_20211204.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_05609__m_3809944_se_14_060_20210909.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_05839__m_3709911_sw_14_060_20190712.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_06305__m_4511313_se_12_060_20211002.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_06588__m_3410304_nw_13_060_20200521.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_06795__m_2910038_sw_14_060_20201011.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_06937__m_4509541_ne_15_060_20190808.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_07145__m_3410332_nw_13_060_20200521.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_07401__m_4110136_sw_14_060_20200729.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_07911__m_3210860_se_12_060_20200517.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_08114__m_3809933_sw_14_060_20210909.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_08463__m_3809960_ne_14_060_20210909.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_08631__m_3409947_nw_14_060_20210919.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_08872__m_4210422_sw_13_060_20190711.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_08930__m_3410719_se_13_060_20200516.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_09164__m_3210836_ne_12_060_20200517.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_09337__m_4609958_nw_14_060_20200818.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_09518__m_4309958_nw_14_060_20210917.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_10317__m_3211226_se_12_060_20211113.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_10611__m_4411335_sw_12_060_20210925.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_10807__m_4012212_nw_10_060_20200713.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_10848__m_4310032_se_14_060_20210917.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_10903__m_4809957_sw_14_060_20190715.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_11195__m_4210611_se_13_060_20190711.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_11495__m_4210652_ne_13_060_20190711.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_11533__m_3709838_ne_14_060_20190712.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_11628__m_3410947_ne_12_060_20211115.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_11746__m_4610048_sw_14_060_20200818.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_12264__m_4211664_ne_11_060_20190714.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_12389__m_3409511_sw_15_060_20210923.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_12628__m_4109961_nw_14_060_20200808.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_13050__m_3210044_sw_14_060_20200925.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_13075__m_3411354_sw_12_060_20211204.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_13496__m_4809741_ne_14_060_20210928.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_13498__m_2910331_nw_13_060_20201007.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_13507__m_4311655_ne_11_060_20190714.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_13526__m_2809723_nw_14_060_20200501.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_13742__m_2910315_nw_13_060_20201007.tif
swin2_mose/results/SR/naip/geotiff/HR__ROI_13889__m_3110514_sw_13_060_20201011.tif
swin2_mose/results/SR/naip/png/HR__ROI_00006__m_4411338_ne_12_060_20210917.png
swin2_mose/results/SR/naip/png/HR__ROI_00270__m_3809943_sw_14_060_20210909.png
swin2_mose/results/SR/naip/png/HR__ROI_00319__m_3609931_se_14_060_20190627.png
swin2_mose/results/SR/naip/png/HR__ROI_00399__m_3809910_sw_14_060_20210909.png
swin2_mose/results/SR/naip/png/HR__ROI_00438__m_3409938_ne_14_060_20210919.png
swin2_mose/results/SR/naip/png/HR__ROI_00456__m_3510353_sw_13_060_20200521.png
swin2_mose/results/SR/naip/png/HR__ROI_00565__m_3410123_se_14_060_20200828.png
swin2_mose/results/SR/naip/png/HR__ROI_01566__m_3211262_nw_12_060_20211113.png
swin2_mose/results/SR/naip/png/HR__ROI_01619__m_4211110_ne_12_060_20190926.png
swin2_mose/results/SR/naip/png/HR__ROI_01750__m_4011251_se_12_060_20210925.png
swin2_mose/results/SR/naip/png/HR__ROI_02524__m_2709848_sw_14_060_20200501.png
swin2_mose/results/SR/naip/png/HR__ROI_02604__m_4110621_sw_13_060_20190711.png
swin2_mose/results/SR/naip/png/HR__ROI_03017__m_3410355_se_13_060_20200521.png
swin2_mose/results/SR/naip/png/HR__ROI_03107__m_3809920_sw_14_060_20210909.png
swin2_mose/results/SR/naip/png/HR__ROI_03117__m_4110739_sw_13_060_20190711.png
swin2_mose/results/SR/naip/png/HR__ROI_03127__m_3211246_nw_12_060_20211113.png
swin2_mose/results/SR/naip/png/HR__ROI_03578__m_3609959_nw_14_060_20210919.png
swin2_mose/results/SR/naip/png/HR__ROI_03696__m_3809959_nw_14_060_20210909.png
swin2_mose/results/SR/naip/png/HR__ROI_03715__m_2910329_sw_13_060_20201008.png
swin2_mose/results/SR/naip/png/HR__ROI_03961__m_3210835_se_12_060_20200517.png
swin2_mose/results/SR/naip/png/HR__ROI_04886__m_3509819_nw_14_060_20210906.png
swin2_mose/results/SR/naip/png/HR__ROI_05095__m_4410348_nw_13_060_20211005.png
swin2_mose/results/SR/naip/png/HR__ROI_05262__m_3410713_nw_13_060_20200516.png
swin2_mose/results/SR/naip/png/HR__ROI_05509__m_3311331_sw_12_060_20211204.png
swin2_mose/results/SR/naip/png/HR__ROI_05609__m_3809944_se_14_060_20210909.png
swin2_mose/results/SR/naip/png/HR__ROI_05839__m_3709911_sw_14_060_20190712.png
swin2_mose/results/SR/naip/png/HR__ROI_06305__m_4511313_se_12_060_20211002.png
swin2_mose/results/SR/naip/png/HR__ROI_06588__m_3410304_nw_13_060_20200521.png
swin2_mose/results/SR/naip/png/HR__ROI_06795__m_2910038_sw_14_060_20201011.png
swin2_mose/results/SR/naip/png/HR__ROI_06937__m_4509541_ne_15_060_20190808.png
swin2_mose/results/SR/naip/png/HR__ROI_07145__m_3410332_nw_13_060_20200521.png
swin2_mose/results/SR/naip/png/HR__ROI_07401__m_4110136_sw_14_060_20200729.png
swin2_mose/results/SR/naip/png/HR__ROI_07911__m_3210860_se_12_060_20200517.png
swin2_mose/results/SR/naip/png/HR__ROI_08114__m_3809933_sw_14_060_20210909.png
swin2_mose/results/SR/naip/png/HR__ROI_08463__m_3809960_ne_14_060_20210909.png
swin2_mose/results/SR/naip/png/HR__ROI_08631__m_3409947_nw_14_060_20210919.png
swin2_mose/results/SR/naip/png/HR__ROI_08872__m_4210422_sw_13_060_20190711.png
swin2_mose/results/SR/naip/png/HR__ROI_08930__m_3410719_se_13_060_20200516.png
swin2_mose/results/SR/naip/png/HR__ROI_09164__m_3210836_ne_12_060_20200517.png
swin2_mose/results/SR/naip/png/HR__ROI_09337__m_4609958_nw_14_060_20200818.png
swin2_mose/results/SR/naip/png/HR__ROI_09518__m_4309958_nw_14_060_20210917.png
swin2_mose/results/SR/naip/png/HR__ROI_10317__m_3211226_se_12_060_20211113.png
swin2_mose/results/SR/naip/png/HR__ROI_10611__m_4411335_sw_12_060_20210925.png
swin2_mose/results/SR/naip/png/HR__ROI_10807__m_4012212_nw_10_060_20200713.png
swin2_mose/results/SR/naip/png/HR__ROI_10848__m_4310032_se_14_060_20210917.png
swin2_mose/results/SR/naip/png/HR__ROI_10903__m_4809957_sw_14_060_20190715.png
swin2_mose/results/SR/naip/png/HR__ROI_11195__m_4210611_se_13_060_20190711.png
swin2_mose/results/SR/naip/png/HR__ROI_11495__m_4210652_ne_13_060_20190711.png
swin2_mose/results/SR/naip/png/HR__ROI_11533__m_3709838_ne_14_060_20190712.png
swin2_mose/results/SR/naip/png/HR__ROI_11628__m_3410947_ne_12_060_20211115.png
swin2_mose/results/SR/naip/png/HR__ROI_11746__m_4610048_sw_14_060_20200818.png
swin2_mose/results/SR/naip/png/HR__ROI_12264__m_4211664_ne_11_060_20190714.png
swin2_mose/results/SR/naip/png/HR__ROI_12389__m_3409511_sw_15_060_20210923.png
swin2_mose/results/SR/naip/png/HR__ROI_12628__m_4109961_nw_14_060_20200808.png
swin2_mose/results/SR/naip/png/HR__ROI_13050__m_3210044_sw_14_060_20200925.png
swin2_mose/results/SR/naip/png/HR__ROI_13075__m_3411354_sw_12_060_20211204.png
swin2_mose/results/SR/naip/png/HR__ROI_13496__m_4809741_ne_14_060_20210928.png
swin2_mose/results/SR/naip/png/HR__ROI_13498__m_2910331_nw_13_060_20201007.png
swin2_mose/results/SR/naip/png/HR__ROI_13507__m_4311655_ne_11_060_20190714.png
swin2_mose/results/SR/naip/png/HR__ROI_13526__m_2809723_nw_14_060_20200501.png
swin2_mose/results/SR/naip/png/HR__ROI_13742__m_2910315_nw_13_060_20201007.png
swin2_mose/results/SR/naip/png/HR__ROI_13889__m_3110514_sw_13_060_20201011.png
swin2_mose/results/SR/spain_crops/geotiff/HR__ROI_00001__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
swin2_mose/results/SR/spain_crops/geotiff/HR__ROI_00002__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
swin2_mose/results/SR/spain_crops/geotiff/HR__ROI_00003__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
swin2_mose/results/SR/spain_crops/geotiff/HR__ROI_00004__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
swin2_mose/results/SR/spain_crops/geotiff/HR__ROI_00005__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
swin2_mose/results/SR/spain_crops/geotiff/HR__ROI_00006__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
swin2_mose/results/SR/spain_crops/geotiff/HR__ROI_00007__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
swin2_mose/results/SR/spain_crops/geotiff/HR__ROI_00008__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
swin2_mose/results/SR/spain_crops/geotiff/HR__ROI_00010__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
swin2_mose/results/SR/spain_crops/geotiff/HR__ROI_00011__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
swin2_mose/results/SR/spain_crops/geotiff/HR__ROI_00012__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
swin2_mose/results/SR/spain_crops/geotiff/HR__ROI_00013__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
swin2_mose/results/SR/spain_crops/geotiff/HR__ROI_00014__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
swin2_mose/results/SR/spain_crops/geotiff/HR__ROI_00015__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
swin2_mose/results/SR/spain_crops/geotiff/HR__ROI_00016__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
swin2_mose/results/SR/spain_crops/geotiff/HR__ROI_00017__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
swin2_mose/results/SR/spain_crops/geotiff/HR__ROI_00019__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0722-1.tif
swin2_mose/results/SR/spain_crops/geotiff/HR__ROI_00023__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
swin2_mose/results/SR/spain_crops/geotiff/HR__ROI_00024__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
swin2_mose/results/SR/spain_crops/geotiff/HR__ROI_00025__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
swin2_mose/results/SR/spain_crops/geotiff/HR__ROI_00026__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
swin2_mose/results/SR/spain_crops/geotiff/HR__ROI_00027__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
swin2_mose/results/SR/spain_crops/geotiff/HR__ROI_00028__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
swin2_mose/results/SR/spain_crops/geotiff/HR__ROI_00030__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
swin2_mose/results/SR/spain_crops/geotiff/HR__ROI_00031__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
swin2_mose/results/SR/spain_crops/geotiff/HR__ROI_00032__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
swin2_mose/results/SR/spain_crops/geotiff/HR__ROI_00033__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
swin2_mose/results/SR/spain_crops/geotiff/HR__ROI_00034__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
swin2_mose/results/SR/spain_crops/png/HR__ROI_00001__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
swin2_mose/results/SR/spain_crops/png/HR__ROI_00002__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
swin2_mose/results/SR/spain_crops/png/HR__ROI_00003__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
swin2_mose/results/SR/spain_crops/png/HR__ROI_00004__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
swin2_mose/results/SR/spain_crops/png/HR__ROI_00005__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
swin2_mose/results/SR/spain_crops/png/HR__ROI_00006__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
swin2_mose/results/SR/spain_crops/png/HR__ROI_00007__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
swin2_mose/results/SR/spain_crops/png/HR__ROI_00008__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
swin2_mose/results/SR/spain_crops/png/HR__ROI_00010__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
swin2_mose/results/SR/spain_crops/png/HR__ROI_00011__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
swin2_mose/results/SR/spain_crops/png/HR__ROI_00012__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
swin2_mose/results/SR/spain_crops/png/HR__ROI_00013__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
swin2_mose/results/SR/spain_crops/png/HR__ROI_00014__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
swin2_mose/results/SR/spain_crops/png/HR__ROI_00015__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
swin2_mose/results/SR/spain_crops/png/HR__ROI_00016__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
swin2_mose/results/SR/spain_crops/png/HR__ROI_00017__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
swin2_mose/results/SR/spain_crops/png/HR__ROI_00019__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0722-1.png
swin2_mose/results/SR/spain_crops/png/HR__ROI_00023__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
swin2_mose/results/SR/spain_crops/png/HR__ROI_00024__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
swin2_mose/results/SR/spain_crops/png/HR__ROI_00025__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
swin2_mose/results/SR/spain_crops/png/HR__ROI_00026__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
swin2_mose/results/SR/spain_crops/png/HR__ROI_00027__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
swin2_mose/results/SR/spain_crops/png/HR__ROI_00028__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
swin2_mose/results/SR/spain_crops/png/HR__ROI_00030__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
swin2_mose/results/SR/spain_crops/png/HR__ROI_00031__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
swin2_mose/results/SR/spain_crops/png/HR__ROI_00032__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
swin2_mose/results/SR/spain_crops/png/HR__ROI_00033__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
swin2_mose/results/SR/spain_crops/png/HR__ROI_00034__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
swin2_mose/results/SR/spain_urban/geotiff/HR__ROI_00001__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
swin2_mose/results/SR/spain_urban/geotiff/HR__ROI_00002__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
swin2_mose/results/SR/spain_urban/geotiff/HR__ROI_00004__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
swin2_mose/results/SR/spain_urban/geotiff/HR__ROI_00006__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
swin2_mose/results/SR/spain_urban/geotiff/HR__ROI_00007__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.tif
swin2_mose/results/SR/spain_urban/geotiff/HR__ROI_00009__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
swin2_mose/results/SR/spain_urban/geotiff/HR__ROI_00010__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
swin2_mose/results/SR/spain_urban/geotiff/HR__ROI_00011__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
swin2_mose/results/SR/spain_urban/geotiff/HR__ROI_00013__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
swin2_mose/results/SR/spain_urban/geotiff/HR__ROI_00014__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.tif
swin2_mose/results/SR/spain_urban/geotiff/HR__ROI_00026__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
swin2_mose/results/SR/spain_urban/geotiff/HR__ROI_00027__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
swin2_mose/results/SR/spain_urban/geotiff/HR__ROI_00028__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
swin2_mose/results/SR/spain_urban/geotiff/HR__ROI_00030__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
swin2_mose/results/SR/spain_urban/geotiff/HR__ROI_00031__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
swin2_mose/results/SR/spain_urban/geotiff/HR__ROI_00032__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.tif
swin2_mose/results/SR/spain_urban/geotiff/HR__ROI_00033__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
swin2_mose/results/SR/spain_urban/geotiff/HR__ROI_00034__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
swin2_mose/results/SR/spain_urban/geotiff/HR__ROI_00035__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
swin2_mose/results/SR/spain_urban/geotiff/HR__ROI_00036__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.tif
swin2_mose/results/SR/spain_urban/png/HR__ROI_00001__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
swin2_mose/results/SR/spain_urban/png/HR__ROI_00002__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
swin2_mose/results/SR/spain_urban/png/HR__ROI_00004__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
swin2_mose/results/SR/spain_urban/png/HR__ROI_00006__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
swin2_mose/results/SR/spain_urban/png/HR__ROI_00007__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0383-2.png
swin2_mose/results/SR/spain_urban/png/HR__ROI_00009__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
swin2_mose/results/SR/spain_urban/png/HR__ROI_00010__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
swin2_mose/results/SR/spain_urban/png/HR__ROI_00011__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
swin2_mose/results/SR/spain_urban/png/HR__ROI_00013__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
swin2_mose/results/SR/spain_urban/png/HR__ROI_00014__PNOA_ANUAL_2020_OF_ETRS89_HU30_h25_0372-1.png
swin2_mose/results/SR/spain_urban/png/HR__ROI_00026__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
swin2_mose/results/SR/spain_urban/png/HR__ROI_00027__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
swin2_mose/results/SR/spain_urban/png/HR__ROI_00028__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
swin2_mose/results/SR/spain_urban/png/HR__ROI_00030__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
swin2_mose/results/SR/spain_urban/png/HR__ROI_00031__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
swin2_mose/results/SR/spain_urban/png/HR__ROI_00032__PNOA_ANUAL_2021_OF_ETRS89_HU31_h25_0334-1.png
swin2_mose/results/SR/spain_urban/png/HR__ROI_00033__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
swin2_mose/results/SR/spain_urban/png/HR__ROI_00034__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
swin2_mose/results/SR/spain_urban/png/HR__ROI_00035__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
swin2_mose/results/SR/spain_urban/png/HR__ROI_00036__PNOA_ANUAL_2021_OF_ETRS89_HU30_h25_0790-2.png
swin2_mose/results/SR/spot/geotiff/ROI_0037__IMG_SPOT6_MS_201702050755046_ORT_ff6f9336-c21e-4081-c072-6038d0f53297_R1C1.tif
swin2_mose/results/SR/spot/geotiff/ROI_0050__IMG_SPOT6_MS_201702220817301_ORT_7f0f2ccb-d59c-41eb-c1f3-27856284016a_R1C1.tif
swin2_mose/results/SR/spot/geotiff/ROI_0117__IMG_SPOT6_MS_201705131607216_ORT_97c1e2b1-ebe8-49d9-c9d0-ae9370a8424a_R1C1.tif
swin2_mose/results/SR/spot/geotiff/ROI_0803__IMG_SPOT6_MS_201903020839263_ORT_fd4ee860-4321-4bb8-cb00-fbc163d2b90f_R1C1.tif
swin2_mose/results/SR/spot/geotiff/ROI_0967__IMG_SPOT6_MS_201910190953241_ORT_a0e55b71-b9f2-4fef-cfc4-8b8e375e47a5_R1C1.tif
swin2_mose/results/SR/spot/geotiff/ROI_1647__IMG_SPOT6_MS_202107211821022_ORT_6cb84e1b-0eae-4daa-cdbe-9a27b94d2244_R1C1.tif
swin2_mose/results/SR/spot/geotiff/ROI_2603__IMG_SPOT7_MS_201907190724338_ORT_2abb8cd4-5a93-4c58-ccb3-697c70f52dce_R1C1.tif
swin2_mose/results/SR/spot/geotiff/ROI_3126__IMG_SPOT7_MS_202011250946543_ORT_aa60c730-be23-4286-c20f-2629d82909ca_R1C1.tif
swin2_mose/results/SR/spot/geotiff/ROI_3171__IMG_SPOT7_MS_202101070832438_ORT_821c8f18-7eb9-4438-c475-4a193446fb48_R1C1.tif
swin2_mose/results/SR/spot/png/ROI_0037__IMG_SPOT6_MS_201702050755046_ORT_ff6f9336-c21e-4081-c072-6038d0f53297_R1C1.png
swin2_mose/results/SR/spot/png/ROI_0050__IMG_SPOT6_MS_201702220817301_ORT_7f0f2ccb-d59c-41eb-c1f3-27856284016a_R1C1.png
swin2_mose/results/SR/spot/png/ROI_0117__IMG_SPOT6_MS_201705131607216_ORT_97c1e2b1-ebe8-49d9-c9d0-ae9370a8424a_R1C1.png
swin2_mose/results/SR/spot/png/ROI_0803__IMG_SPOT6_MS_201903020839263_ORT_fd4ee860-4321-4bb8-cb00-fbc163d2b90f_R1C1.png
swin2_mose/results/SR/spot/png/ROI_0967__IMG_SPOT6_MS_201910190953241_ORT_a0e55b71-b9f2-4fef-cfc4-8b8e375e47a5_R1C1.png
swin2_mose/results/SR/spot/png/ROI_1647__IMG_SPOT6_MS_202107211821022_ORT_6cb84e1b-0eae-4daa-cdbe-9a27b94d2244_R1C1.png
swin2_mose/results/SR/spot/png/ROI_2603__IMG_SPOT7_MS_201907190724338_ORT_2abb8cd4-5a93-4c58-ccb3-697c70f52dce_R1C1.png
swin2_mose/results/SR/spot/png/ROI_3126__IMG_SPOT7_MS_202011250946543_ORT_aa60c730-be23-4286-c20f-2629d82909ca_R1C1.png
swin2_mose/results/SR/spot/png/ROI_3171__IMG_SPOT7_MS_202101070832438_ORT_821c8f18-7eb9-4438-c475-4a193446fb48_R1C1.png
swin2_mose/results/SR/venus/geotiff/ROI_0005.tif
swin2_mose/results/SR/venus/geotiff/ROI_0006.tif
swin2_mose/results/SR/venus/geotiff/ROI_0007.tif
swin2_mose/results/SR/venus/geotiff/ROI_0008.tif
swin2_mose/results/SR/venus/geotiff/ROI_0009.tif
swin2_mose/results/SR/venus/geotiff/ROI_0010.tif
swin2_mose/results/SR/venus/geotiff/ROI_0011.tif
swin2_mose/results/SR/venus/geotiff/ROI_0015.tif
swin2_mose/results/SR/venus/geotiff/ROI_0017.tif
swin2_mose/results/SR/venus/geotiff/ROI_0018.tif
swin2_mose/results/SR/venus/geotiff/ROI_0019.tif
swin2_mose/results/SR/venus/geotiff/ROI_0020.tif
swin2_mose/results/SR/venus/geotiff/ROI_0021.tif
swin2_mose/results/SR/venus/geotiff/ROI_0023.tif
swin2_mose/results/SR/venus/geotiff/ROI_0024.tif
swin2_mose/results/SR/venus/geotiff/ROI_0025.tif
swin2_mose/results/SR/venus/geotiff/ROI_0026.tif
swin2_mose/results/SR/venus/geotiff/ROI_0027.tif
swin2_mose/results/SR/venus/geotiff/ROI_0029.tif
swin2_mose/results/SR/venus/geotiff/ROI_0030.tif
swin2_mose/results/SR/venus/geotiff/ROI_0031.tif
swin2_mose/results/SR/venus/geotiff/ROI_0032.tif
swin2_mose/results/SR/venus/geotiff/ROI_0033.tif
swin2_mose/results/SR/venus/geotiff/ROI_0034.tif
swin2_mose/results/SR/venus/geotiff/ROI_0036.tif
swin2_mose/results/SR/venus/geotiff/ROI_0037.tif
swin2_mose/results/SR/venus/geotiff/ROI_0038.tif
swin2_mose/results/SR/venus/geotiff/ROI_0040.tif
swin2_mose/results/SR/venus/geotiff/ROI_0041.tif
swin2_mose/results/SR/venus/geotiff/ROI_0042.tif
swin2_mose/results/SR/venus/geotiff/ROI_0045.tif
swin2_mose/results/SR/venus/geotiff/ROI_0046.tif
swin2_mose/results/SR/venus/geotiff/ROI_0049.tif
swin2_mose/results/SR/venus/geotiff/ROI_0050.tif
swin2_mose/results/SR/venus/geotiff/ROI_0051.tif
swin2_mose/results/SR/venus/geotiff/ROI_0055.tif
swin2_mose/results/SR/venus/geotiff/ROI_0059.tif
swin2_mose/results/SR/venus/geotiff/ROI_0061.tif
swin2_mose/results/SR/venus/geotiff/ROI_0063.tif
swin2_mose/results/SR/venus/geotiff/ROI_0066.tif
swin2_mose/results/SR/venus/geotiff/ROI_0067.tif
swin2_mose/results/SR/venus/geotiff/ROI_0068.tif
swin2_mose/results/SR/venus/geotiff/ROI_0069.tif
swin2_mose/results/SR/venus/geotiff/ROI_0072.tif
swin2_mose/results/SR/venus/geotiff/ROI_0073.tif
swin2_mose/results/SR/venus/geotiff/ROI_0074.tif
swin2_mose/results/SR/venus/geotiff/ROI_0075.tif
swin2_mose/results/SR/venus/geotiff/ROI_0077.tif
swin2_mose/results/SR/venus/geotiff/ROI_0078.tif
swin2_mose/results/SR/venus/geotiff/ROI_0082.tif
swin2_mose/results/SR/venus/geotiff/ROI_0085.tif
swin2_mose/results/SR/venus/geotiff/ROI_0089.tif
swin2_mose/results/SR/venus/geotiff/ROI_0098.tif
swin2_mose/results/SR/venus/geotiff/ROI_0111.tif
swin2_mose/results/SR/venus/geotiff/ROI_0112.tif
swin2_mose/results/SR/venus/geotiff/ROI_0115.tif
swin2_mose/results/SR/venus/geotiff/ROI_0116.tif
swin2_mose/results/SR/venus/geotiff/ROI_0117.tif
swin2_mose/results/SR/venus/geotiff/ROI_0118.tif
swin2_mose/results/SR/venus/png/ROI_0005.png
swin2_mose/results/SR/venus/png/ROI_0006.png
swin2_mose/results/SR/venus/png/ROI_0007.png
swin2_mose/results/SR/venus/png/ROI_0008.png
swin2_mose/results/SR/venus/png/ROI_0009.png
swin2_mose/results/SR/venus/png/ROI_0010.png
swin2_mose/results/SR/venus/png/ROI_0011.png
swin2_mose/results/SR/venus/png/ROI_0015.png
swin2_mose/results/SR/venus/png/ROI_0017.png
swin2_mose/results/SR/venus/png/ROI_0018.png
swin2_mose/results/SR/venus/png/ROI_0019.png
swin2_mose/results/SR/venus/png/ROI_0020.png
swin2_mose/results/SR/venus/png/ROI_0021.png
swin2_mose/results/SR/venus/png/ROI_0023.png
swin2_mose/results/SR/venus/png/ROI_0024.png
swin2_mose/results/SR/venus/png/ROI_0025.png
swin2_mose/results/SR/venus/png/ROI_0026.png
swin2_mose/results/SR/venus/png/ROI_0027.png
swin2_mose/results/SR/venus/png/ROI_0029.png
swin2_mose/results/SR/venus/png/ROI_0030.png
swin2_mose/results/SR/venus/png/ROI_0031.png
swin2_mose/results/SR/venus/png/ROI_0032.png
swin2_mose/results/SR/venus/png/ROI_0033.png
swin2_mose/results/SR/venus/png/ROI_0034.png
swin2_mose/results/SR/venus/png/ROI_0036.png
swin2_mose/results/SR/venus/png/ROI_0037.png
swin2_mose/results/SR/venus/png/ROI_0038.png
swin2_mose/results/SR/venus/png/ROI_0040.png
swin2_mose/results/SR/venus/png/ROI_0041.png
swin2_mose/results/SR/venus/png/ROI_0042.png
swin2_mose/results/SR/venus/png/ROI_0045.png
swin2_mose/results/SR/venus/png/ROI_0046.png
swin2_mose/results/SR/venus/png/ROI_0049.png
swin2_mose/results/SR/venus/png/ROI_0050.png
swin2_mose/results/SR/venus/png/ROI_0051.png
swin2_mose/results/SR/venus/png/ROI_0055.png
swin2_mose/results/SR/venus/png/ROI_0059.png
swin2_mose/results/SR/venus/png/ROI_0061.png
swin2_mose/results/SR/venus/png/ROI_0063.png
swin2_mose/results/SR/venus/png/ROI_0066.png
swin2_mose/results/SR/venus/png/ROI_0067.png
swin2_mose/results/SR/venus/png/ROI_0068.png
swin2_mose/results/SR/venus/png/ROI_0069.png
swin2_mose/results/SR/venus/png/ROI_0072.png
swin2_mose/results/SR/venus/png/ROI_0073.png
swin2_mose/results/SR/venus/png/ROI_0074.png
swin2_mose/results/SR/venus/png/ROI_0075.png
swin2_mose/results/SR/venus/png/ROI_0077.png
swin2_mose/results/SR/venus/png/ROI_0078.png
swin2_mose/results/SR/venus/png/ROI_0082.png
swin2_mose/results/SR/venus/png/ROI_0085.png
swin2_mose/results/SR/venus/png/ROI_0089.png
swin2_mose/results/SR/venus/png/ROI_0098.png
swin2_mose/results/SR/venus/png/ROI_0111.png
swin2_mose/results/SR/venus/png/ROI_0112.png
swin2_mose/results/SR/venus/png/ROI_0115.png
swin2_mose/results/SR/venus/png/ROI_0116.png
swin2_mose/results/SR/venus/png/ROI_0117.png
swin2_mose/results/SR/venus/png/ROI_0118.png
swin2_mose/run.py
swin2_mose/swin2_mose.zip
swin2_mose/utils.py
swin2_mose/weights/config-70.yml
swin2_mose/weights/model-70.pt