├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md └── types ├── DataCube-Landsat ├── DataCube-Landsat.py ├── DataCube_L7_MS.rft.xml ├── DataCube_L7_MS_QA.rft.xml ├── DataCube_L8_MS.rft.xml ├── DataCube_L8_MS_QA.rft.xml ├── DataCube_MS_Composite.rft.xml └── DataCube_MS_QA_Composite.rft.xml ├── DataCube-Sentinel ├── DataCube-Sentinel.py ├── DataCube_S1_SAR.rft.xml └── DataCube_SAR_Composite.rft.xml ├── GeoScience-Landsat ├── GS_Composite.rft.xml ├── GS_Composite_7Bands.rft.xml ├── GS_QA_Composite.rft.xml ├── GS_Supplementary_Composite.rft.xml ├── Geoscience-Landsat.py ├── Geoscience_ALL_Composite.rft.xml ├── Geoscience_MS_ALL.rft.xml ├── Geoscience_MS_Lambertian.rft.xml ├── Geoscience_MS_NBAR.rft.xml ├── Geoscience_MS_NBART.rft.xml ├── Geoscience_MS_QA.rft.xml └── Geoscience_MS_Supplementary.rft.xml ├── Geoscience-Sentinel2 ├── GS_Composite.rft.xml ├── GS_QA_Composite.rft.xml ├── Geoscience-Sentinel.py ├── Geoscience_ALL_Composite.rft.xml ├── Geoscience_MS_ALL.rft.xml ├── Geoscience_MS_Lambertian.rft.xml ├── Geoscience_MS_NBAR.rft.xml ├── Geoscience_MS_NBART.rft.xml ├── Geoscience_MS_QA.rft.xml └── Geoscience_MS_Supplementary.rft.xml ├── Geoscience ├── GS_Composite_be.rft.xml ├── GS_Composite_fc.rft.xml ├── GS_Composite_mc.rft.xml ├── GS_Composite_wofs_fs.rft.xml ├── GS_Composite_wofs_ss.rft.xml ├── Geoscience.py ├── Geoscience_MS_be.rft.xml ├── Geoscience_MS_fc.rft.xml ├── Geoscience_MS_mc.rft.xml ├── Geoscience_MS_wofs.rft.xml ├── Geoscience_MS_wofs_fs.rft.xml └── Geoscience_MS_wofs_ss.rft ├── SuperView-1 ├── SV1_stretch_allbands.rft.xml ├── SV1_stretch_ms.rft.xml ├── SV1_stretch_pan.rft.xml ├── SV1_stretch_psh.rft.xml └── SuperView-1.py ├── Triplesat ├── TS_stretch_allbands.rft.xml ├── TS_stretch_ms.rft.xml ├── TS_stretch_pan.rft.xml ├── TS_stretch_psh.rft.xml └── TripleSat.py └── sample ├── identity.rft.xml ├── pythonRasterDatasetSample.py ├── stretch.rft.xml └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/README.md -------------------------------------------------------------------------------- /types/DataCube-Landsat/DataCube-Landsat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/DataCube-Landsat/DataCube-Landsat.py -------------------------------------------------------------------------------- /types/DataCube-Landsat/DataCube_L7_MS.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/DataCube-Landsat/DataCube_L7_MS.rft.xml -------------------------------------------------------------------------------- /types/DataCube-Landsat/DataCube_L7_MS_QA.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/DataCube-Landsat/DataCube_L7_MS_QA.rft.xml -------------------------------------------------------------------------------- /types/DataCube-Landsat/DataCube_L8_MS.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/DataCube-Landsat/DataCube_L8_MS.rft.xml -------------------------------------------------------------------------------- /types/DataCube-Landsat/DataCube_L8_MS_QA.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/DataCube-Landsat/DataCube_L8_MS_QA.rft.xml -------------------------------------------------------------------------------- /types/DataCube-Landsat/DataCube_MS_Composite.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/DataCube-Landsat/DataCube_MS_Composite.rft.xml -------------------------------------------------------------------------------- /types/DataCube-Landsat/DataCube_MS_QA_Composite.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/DataCube-Landsat/DataCube_MS_QA_Composite.rft.xml -------------------------------------------------------------------------------- /types/DataCube-Sentinel/DataCube-Sentinel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/DataCube-Sentinel/DataCube-Sentinel.py -------------------------------------------------------------------------------- /types/DataCube-Sentinel/DataCube_S1_SAR.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/DataCube-Sentinel/DataCube_S1_SAR.rft.xml -------------------------------------------------------------------------------- /types/DataCube-Sentinel/DataCube_SAR_Composite.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/DataCube-Sentinel/DataCube_SAR_Composite.rft.xml -------------------------------------------------------------------------------- /types/GeoScience-Landsat/GS_Composite.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/GeoScience-Landsat/GS_Composite.rft.xml -------------------------------------------------------------------------------- /types/GeoScience-Landsat/GS_Composite_7Bands.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/GeoScience-Landsat/GS_Composite_7Bands.rft.xml -------------------------------------------------------------------------------- /types/GeoScience-Landsat/GS_QA_Composite.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/GeoScience-Landsat/GS_QA_Composite.rft.xml -------------------------------------------------------------------------------- /types/GeoScience-Landsat/GS_Supplementary_Composite.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/GeoScience-Landsat/GS_Supplementary_Composite.rft.xml -------------------------------------------------------------------------------- /types/GeoScience-Landsat/Geoscience-Landsat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/GeoScience-Landsat/Geoscience-Landsat.py -------------------------------------------------------------------------------- /types/GeoScience-Landsat/Geoscience_ALL_Composite.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/GeoScience-Landsat/Geoscience_ALL_Composite.rft.xml -------------------------------------------------------------------------------- /types/GeoScience-Landsat/Geoscience_MS_ALL.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/GeoScience-Landsat/Geoscience_MS_ALL.rft.xml -------------------------------------------------------------------------------- /types/GeoScience-Landsat/Geoscience_MS_Lambertian.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/GeoScience-Landsat/Geoscience_MS_Lambertian.rft.xml -------------------------------------------------------------------------------- /types/GeoScience-Landsat/Geoscience_MS_NBAR.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/GeoScience-Landsat/Geoscience_MS_NBAR.rft.xml -------------------------------------------------------------------------------- /types/GeoScience-Landsat/Geoscience_MS_NBART.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/GeoScience-Landsat/Geoscience_MS_NBART.rft.xml -------------------------------------------------------------------------------- /types/GeoScience-Landsat/Geoscience_MS_QA.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/GeoScience-Landsat/Geoscience_MS_QA.rft.xml -------------------------------------------------------------------------------- /types/GeoScience-Landsat/Geoscience_MS_Supplementary.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/GeoScience-Landsat/Geoscience_MS_Supplementary.rft.xml -------------------------------------------------------------------------------- /types/Geoscience-Sentinel2/GS_Composite.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/Geoscience-Sentinel2/GS_Composite.rft.xml -------------------------------------------------------------------------------- /types/Geoscience-Sentinel2/GS_QA_Composite.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/Geoscience-Sentinel2/GS_QA_Composite.rft.xml -------------------------------------------------------------------------------- /types/Geoscience-Sentinel2/Geoscience-Sentinel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/Geoscience-Sentinel2/Geoscience-Sentinel.py -------------------------------------------------------------------------------- /types/Geoscience-Sentinel2/Geoscience_ALL_Composite.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/Geoscience-Sentinel2/Geoscience_ALL_Composite.rft.xml -------------------------------------------------------------------------------- /types/Geoscience-Sentinel2/Geoscience_MS_ALL.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/Geoscience-Sentinel2/Geoscience_MS_ALL.rft.xml -------------------------------------------------------------------------------- /types/Geoscience-Sentinel2/Geoscience_MS_Lambertian.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/Geoscience-Sentinel2/Geoscience_MS_Lambertian.rft.xml -------------------------------------------------------------------------------- /types/Geoscience-Sentinel2/Geoscience_MS_NBAR.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/Geoscience-Sentinel2/Geoscience_MS_NBAR.rft.xml -------------------------------------------------------------------------------- /types/Geoscience-Sentinel2/Geoscience_MS_NBART.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/Geoscience-Sentinel2/Geoscience_MS_NBART.rft.xml -------------------------------------------------------------------------------- /types/Geoscience-Sentinel2/Geoscience_MS_QA.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/Geoscience-Sentinel2/Geoscience_MS_QA.rft.xml -------------------------------------------------------------------------------- /types/Geoscience-Sentinel2/Geoscience_MS_Supplementary.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/Geoscience-Sentinel2/Geoscience_MS_Supplementary.rft.xml -------------------------------------------------------------------------------- /types/Geoscience/GS_Composite_be.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/Geoscience/GS_Composite_be.rft.xml -------------------------------------------------------------------------------- /types/Geoscience/GS_Composite_fc.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/Geoscience/GS_Composite_fc.rft.xml -------------------------------------------------------------------------------- /types/Geoscience/GS_Composite_mc.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/Geoscience/GS_Composite_mc.rft.xml -------------------------------------------------------------------------------- /types/Geoscience/GS_Composite_wofs_fs.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/Geoscience/GS_Composite_wofs_fs.rft.xml -------------------------------------------------------------------------------- /types/Geoscience/GS_Composite_wofs_ss.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/Geoscience/GS_Composite_wofs_ss.rft.xml -------------------------------------------------------------------------------- /types/Geoscience/Geoscience.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/Geoscience/Geoscience.py -------------------------------------------------------------------------------- /types/Geoscience/Geoscience_MS_be.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/Geoscience/Geoscience_MS_be.rft.xml -------------------------------------------------------------------------------- /types/Geoscience/Geoscience_MS_fc.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/Geoscience/Geoscience_MS_fc.rft.xml -------------------------------------------------------------------------------- /types/Geoscience/Geoscience_MS_mc.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/Geoscience/Geoscience_MS_mc.rft.xml -------------------------------------------------------------------------------- /types/Geoscience/Geoscience_MS_wofs.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/Geoscience/Geoscience_MS_wofs.rft.xml -------------------------------------------------------------------------------- /types/Geoscience/Geoscience_MS_wofs_fs.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/Geoscience/Geoscience_MS_wofs_fs.rft.xml -------------------------------------------------------------------------------- /types/Geoscience/Geoscience_MS_wofs_ss.rft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/Geoscience/Geoscience_MS_wofs_ss.rft -------------------------------------------------------------------------------- /types/SuperView-1/SV1_stretch_allbands.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/SuperView-1/SV1_stretch_allbands.rft.xml -------------------------------------------------------------------------------- /types/SuperView-1/SV1_stretch_ms.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/SuperView-1/SV1_stretch_ms.rft.xml -------------------------------------------------------------------------------- /types/SuperView-1/SV1_stretch_pan.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/SuperView-1/SV1_stretch_pan.rft.xml -------------------------------------------------------------------------------- /types/SuperView-1/SV1_stretch_psh.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/SuperView-1/SV1_stretch_psh.rft.xml -------------------------------------------------------------------------------- /types/SuperView-1/SuperView-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/SuperView-1/SuperView-1.py -------------------------------------------------------------------------------- /types/Triplesat/TS_stretch_allbands.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/Triplesat/TS_stretch_allbands.rft.xml -------------------------------------------------------------------------------- /types/Triplesat/TS_stretch_ms.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/Triplesat/TS_stretch_ms.rft.xml -------------------------------------------------------------------------------- /types/Triplesat/TS_stretch_pan.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/Triplesat/TS_stretch_pan.rft.xml -------------------------------------------------------------------------------- /types/Triplesat/TS_stretch_psh.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/Triplesat/TS_stretch_psh.rft.xml -------------------------------------------------------------------------------- /types/Triplesat/TripleSat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/Triplesat/TripleSat.py -------------------------------------------------------------------------------- /types/sample/identity.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/sample/identity.rft.xml -------------------------------------------------------------------------------- /types/sample/pythonRasterDatasetSample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/sample/pythonRasterDatasetSample.py -------------------------------------------------------------------------------- /types/sample/stretch.rft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/sample/stretch.rft.xml -------------------------------------------------------------------------------- /types/sample/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/raster-types/HEAD/types/sample/utils.py --------------------------------------------------------------------------------