.. _supported-blocks: Supported blocks ================ Landsat-8 Level 1 (TOA) AOI clipped ------------------------------------ To see this block on up42 please `click here `_. Available bands: +-------------+-----------------------------------+ | Band name | Description | +=============+===================================+ | B01 | Ultra Blue (30m) | +-------------+-----------------------------------+ | B02 | Blue (30m) | +-------------+-----------------------------------+ | B03 | Green (30m) | +-------------+-----------------------------------+ | B04 | Red (30m) | +-------------+-----------------------------------+ | B05 | Near Infrared (NIR) (30m) | +-------------+-----------------------------------+ | B06 | Shortwave Infrared (SWIR 1) (30m) | +-------------+-----------------------------------+ | B07 | Shortwave Infrared (SWIR 2) (30m) | +-------------+-----------------------------------+ | B08 | Panchromatic (15m) | +-------------+-----------------------------------+ | B09 | Cirrus (30m) | +-------------+-----------------------------------+ | B10 | Thermal Infrared (TIRS) (30m) | +-------------+-----------------------------------+ | B11 | Thermal Infrared (TIRS) (30m) | +-------------+-----------------------------------+ Available indices: +--------------+----------------------------------------+---------------------------------------------------------+ | Index name | Description | Mathematical formula | +==============+========================================+=========================================================+ | NDVI | Normalized Difference Vegetation Index | ``(B05-B04) / (B05+B04)`` | +--------------+----------------------------------------+---------------------------------------------------------+ | EVI | Enhanced Vegetation Index | ``2.5 * (B05 - B04) / (B05 + 6 * B04 - 7.5 * B02 + 1)`` | +--------------+----------------------------------------+---------------------------------------------------------+ | NBR | Normalized Burn Ratio | ``(B05-B07) / (B05+B07)`` | +--------------+----------------------------------------+---------------------------------------------------------+ | SIPI1 | Structure Insensitive Pigment Index 1 | ``(B05 - B01) / (B05 - B04)`` | +--------------+----------------------------------------+---------------------------------------------------------+ | CIgreen | Chlorophyll Index Green | ``B05 / B03 - 1`` | +--------------+----------------------------------------+---------------------------------------------------------+ Sample block parameters when using *Landsat-8 Level 1 (TOA) AOI clipped* data block: .. code-block:: javascript { "red": "((B01+B02)/2)/256", "blue": "B05/256", "green": "B03/256", "satellite": "Landsat-8 Level 1 (TOA) AOI clipped" } Pléiades Download ------------------------------------ To see this block on up42 please `click here `_. Available bands: +-------------+---------------------+ | Band name | Description | +=============+=====================+ | R | Red (2m) | +-------------+---------------------+ | G | Green (2m) | +-------------+---------------------+ | B | Blue (2m) | +-------------+---------------------+ | NIR | NIR (2m) | +-------------+---------------------+ | PAN | Panchromatic (0.5m) | +-------------+---------------------+ Available indices: +--------------+----------------------------------------+---------------------------------------------------+ | Index name | Description | Mathematical formula | +==============+========================================+===================================================+ | SIPI1 | Structure Intensive Pigment Index 1 | ``(NIR - B) / (NIR - R)`` | +--------------+----------------------------------------+---------------------------------------------------+ | NDVI | Normalized Difference Vegetation Index | ``(NIR-R) / (NIR+R)`` | +--------------+----------------------------------------+---------------------------------------------------+ | EVI | Enhanced Vegetation Index | ``2.5 * (NIR - R) / (NIR + 6 * R - 7.5 * B + 1)`` | +--------------+----------------------------------------+---------------------------------------------------+ | CIgreen | Chlorophyll Index Green | ``NIR / G - 1`` | +--------------+----------------------------------------+---------------------------------------------------+ Sample block parameters when using *Pléiades Download* data block: .. warning:: Please notice that ``satellite`` parameter does not contain 'é' character but 'e'. .. code-block:: javascript { "red": "((B+G)/2)/64", "blue": "PAN/64", "green": "((R+NIR)/2)/64", "satellite": "Pleiades Download" } Pléiades Streaming ------------------------------------ To see this block on up42 please `click here `_. Available bands: .. warning:: For ``PAN`` and ``ALPHA`` bands being available, the data block parameter ``panchromatic_band`` must be set to ``true``. +-------------+---------------------+ | Band name | Description | +=============+=====================+ | R | Red (0.5m) | +-------------+---------------------+ | G | Green (0.5m) | +-------------+---------------------+ | B | Blue (0.5m) | +-------------+---------------------+ | PAN | Panchromatic (0.5m) | +-------------+---------------------+ | ALPHA | Alpha | +-------------+---------------------+ Sample block parameters when using *Pléiades Streaming* data block: .. warning:: Please notice that ``satellite`` parameter does not contain 'é' character but 'e'. .. code-block:: javascript { "red": "(PAN+G+B)/3", "blue": "B", "green": "PAN", "satellite": "Pleiades Streaming" } Sentinel-1 L1C GRD AOI clipped ------------------------------------ To see this block on up42 please `click here `_. Available bands: +-------------+------------------------------------------+ | Band name | Description | +=============+==========================================+ | VV | Vertical transmit and vertical receive | +-------------+------------------------------------------+ | VH | Vertical transmit and horizontal receive | +-------------+------------------------------------------+ | ALPHA | Alpha | +-------------+------------------------------------------+ Sample block parameters when using *Sentinel-1 L1C GRD AOI clipped* data block: .. code-block:: javascript { "red": "VV", "blue": "VH", "green": "(VV+VH)/2", "satellite": "Sentinel-1 L1C GRD AOI clipped" } Sentinel-2 L1C MSI AOI clipped ------------------------------------ To see this block on up42 please `click here `_. Available bands: +-------------+---------------+ | Band name | Description | +=============+===============+ | B01 | Red (10m) | +-------------+---------------+ | B02 | Green (10m) | +-------------+---------------+ | B03 | Blue (10m) | +-------------+---------------+ | B04 | Alpha | +-------------+---------------+ Sample block parameters when using *Sentinel-2 L1C MSI AOI clipped* data block: .. code-block:: javascript { "red": "(B01+B02+B03)/3", "blue": "(B01+B02+B03)/3", "green": "(B01+B02+B03)/3", "satellite": "Sentinel-2 L1C MSI AOI clipped" } Sentinel-2 L1C MSI Full Scenes ------------------------------------ To see this block on up42 please `click here `_. Available bands: +-------------+-------------------------------------+ | Band name | Description | +=============+=====================================+ | B01 | Coastal aerosol (60m) | +-------------+-------------------------------------+ | B02 | Blue (10m) | +-------------+-------------------------------------+ | B03 | Green (10m) | +-------------+-------------------------------------+ | B04 | Red (10m) | +-------------+-------------------------------------+ | B05 | Vegetation red edge, 704.1 nm (20m) | +-------------+-------------------------------------+ | B06 | Vegetation red edge, 740.5 nm (20m) | +-------------+-------------------------------------+ | B07 | Vegetation red edge, 782.8 nm (20m) | +-------------+-------------------------------------+ | B08 | NIR (10m) | +-------------+-------------------------------------+ | B8A | Narrow NIR (20m) | +-------------+-------------------------------------+ | B09 | Water vapour (60m) | +-------------+-------------------------------------+ | B10 | SWIR - Cirrus, 1373.5 nm (60m) | +-------------+-------------------------------------+ | B11 | SWIR, 1613.7 nm (20m) | +-------------+-------------------------------------+ | B12 | SWIR, 2202.4 nm (20m) | +-------------+-------------------------------------+ | R | Red 8bit (10m) | +-------------+-------------------------------------+ | G | Green 8bit (10m) | +-------------+-------------------------------------+ | B | Blue 8bit (10m) | +-------------+-------------------------------------+ Available indices: +--------------+-----------------------------------------------+---------------------------------------------------------+ | Index name | Description | Mathematical formula | +==============+===============================================+=========================================================+ | NDVI | Normalized Difference Vegetation Index | ``(B08-B04) / (B08+B04)`` | +--------------+-----------------------------------------------+---------------------------------------------------------+ | RNDVI | Renormalized Difference Vegetation Index | ``(B08-B04) / sqrt(B08+B04)`` | +--------------+-----------------------------------------------+---------------------------------------------------------+ | NDMI | Normalized Difference Moisture Index | ``(B08-B11) / (B08+B11)`` | +--------------+-----------------------------------------------+---------------------------------------------------------+ | TCARI | Transformed Chlorophyl Absorbtion Ratio Index | ``3*((B05-B04) - 0.2*(B05-B03)*(B05/B04))`` | +--------------+-----------------------------------------------+---------------------------------------------------------+ | EVI | Enhanced Vegetation Index | ``2.5 * (B08 - B05) / (B08 + 6 * B05 - 7.5 * B01 + 1)`` | +--------------+-----------------------------------------------+---------------------------------------------------------+ | NBR | Normalized Burn Ratio | ``(B08 - B12) / (B08 + B12)`` | +--------------+-----------------------------------------------+---------------------------------------------------------+ | SIPI1 | Structure Intensive Pigment Index 1 | ``(B08 - B01) / (B08 - B04)`` | +--------------+-----------------------------------------------+---------------------------------------------------------+ | CIgreen | Chlorophyll Index Green | ``B08 / B03 - 1`` | +--------------+-----------------------------------------------+---------------------------------------------------------+ Sample block parameters when using *Sentinel-2 L1C MSI Full Scenes* data block: .. code-block:: javascript { "red": "(NDVI+1)*128-1", "blue": "(NDVI+1)*128-1", "green": "(NDVI+1)*128-1", "satellite": "Sentinel-2 L1C MSI Full Scenes" } Sentinel-2 Level 2 (BOA) AOI clipped ------------------------------------ To see this block on up42 please `click here `_. Available bands: +-------------+-------------------------------------+ | Band name | Description | +=============+=====================================+ | B01 | Coastal aerosol (60m) | +-------------+-------------------------------------+ | B02 | Blue (10m) | +-------------+-------------------------------------+ | B03 | Green (10m) | +-------------+-------------------------------------+ | B04 | Red (10m) | +-------------+-------------------------------------+ | B05 | Vegetation red edge, 704.1 nm (20m) | +-------------+-------------------------------------+ | B06 | Vegetation red edge, 740.5 nm (20m) | +-------------+-------------------------------------+ | B07 | Vegetation red edge, 782.8 nm (10m) | +-------------+-------------------------------------+ | B08 | NIR (10m) | +-------------+-------------------------------------+ | B8A | Narrow NIR (20m) | +-------------+-------------------------------------+ | B09 | Water vapour (60m) | +-------------+-------------------------------------+ | B10 | SWIR - Cirrus, 1373.5 nm (60m) | +-------------+-------------------------------------+ | B11 | SWIR, 1613.7 nm (20m) | +-------------+-------------------------------------+ | B12 | SWIR, 2202.4 nm (20m) | +-------------+-------------------------------------+ Available indices: +--------------+-----------------------------------------------+---------------------------------------------------------+ | Index name | Description | Mathematical formula | +==============+===============================================+=========================================================+ | NDVI | Normalized Difference Vegetation Index | ``(B08-B04) / (B08+B04)`` | +--------------+-----------------------------------------------+---------------------------------------------------------+ | RNDVI | Renormalized Difference Vegetation Index | ``(B08-B04) / sqrt(B08+B04)`` | +--------------+-----------------------------------------------+---------------------------------------------------------+ | NDMI | Normalized Difference Moisture Index | ``(B08-B11) / (B08+B11)`` | +--------------+-----------------------------------------------+---------------------------------------------------------+ | TCARI | Transformed Chlorophyl Absorbtion Ratio Index | ``3*((B05-B04) - 0.2*(B05-B03)*(B05/B04))`` | +--------------+-----------------------------------------------+---------------------------------------------------------+ | EVI | Enhanced Vegetation Index | ``2.5 * (B08 - B05) / (B08 + 6 * B05 - 7.5 * B01 + 1)`` | +--------------+-----------------------------------------------+---------------------------------------------------------+ | NBR | Normalized Burn Ratio | ``(B08 - B12) / (B08 + B12)`` | +--------------+-----------------------------------------------+---------------------------------------------------------+ | SIPI1 | Structure Intensive Pigment Index 1 | ``(B08 - B01) / (B08 - B04)`` | +--------------+-----------------------------------------------+---------------------------------------------------------+ | CIgreen | Chlorophyll Index Green | ``B08 / B03 - 1`` | +--------------+-----------------------------------------------+---------------------------------------------------------+ Sample block parameters when using *Sentinel-2 Level 2 (BOA) AOI clipped* data block: .. code-block:: javascript { "red": "(NDVI+1)*128-1", "blue": "(NDVI+1)*128-1", "green": "(NDVI+1)*128-1", "satellite": "Sentinel-2 Level 2 (BOA) AOI clipped" } SPOT 6/7 Download ------------------------------------ To see this block on up42 please `click here `_. Available bands: +-------------+---------------------+ | Band name | Description | +=============+=====================+ | R | Red (6m) | +-------------+---------------------+ | G | Green (6m) | +-------------+---------------------+ | B | Blue (6m) | +-------------+---------------------+ | NIR | NIR (6m) | +-------------+---------------------+ | PAN | Panchromatic (1.5m) | +-------------+---------------------+ Available indices: +--------------+----------------------------------------+---------------------------------------------------+ | Index name | Description | Mathematical formula | +==============+========================================+===================================================+ | SIPI2 | Structure Intensive Pigment Index 2 | ``(NIR - B) / (NIR - R)`` | +--------------+----------------------------------------+---------------------------------------------------+ | NDVI | Normalized Difference Vegetation Index | ``(NIR-R) / (NIR+R)`` | +--------------+----------------------------------------+---------------------------------------------------+ | EVI | Enhanced Vegetation Index | ``2.5 * (NIR - R) / (NIR + 6 * R - 7.5 * B + 1)`` | +--------------+----------------------------------------+---------------------------------------------------+ | CIgreen | Chlorophyll Index Green | ``NIR / G - 1`` | +--------------+----------------------------------------+---------------------------------------------------+ Sample block parameters when using *SPOT 6/7 Download* data block: .. code-block:: javascript { "red": "NIR/32", "blue": "R/32", "green": "G/32", "satellite": "SPOT 6/7 Download" } SPOT 6/7 Streaming ------------------------------------ To see this block on up42 please `click here `_. Available bands: .. warning:: For ``PAN`` and ``ALPHA`` bands being available, the data block parameter ``panchromatic_band`` must be set to ``true``. +-------------+---------------------+ | Band name | Description | +=============+=====================+ | R | Red (1.5m) | +-------------+---------------------+ | G | Green (1.5m) | +-------------+---------------------+ | B | Blue (1.5m) | +-------------+---------------------+ | PAN | Panchromatic (1.5m) | +-------------+---------------------+ | ALPHA | Alpha | +-------------+---------------------+ Sample block parameters when using *SPOT 6/7 Streaming* data block: .. code-block:: javascript { "red": "(PAN+R)/2", "blue": "(PAN+G)/2", "green": "(PAN+B)/2", "satellite": "SPOT 6/7 Streaming" } WorldDEM 90m BBOX - Clipped ------------------------------------ To see this block on up42 please `click here `_. Available bands: +-------------+----------------------+ | Band name | Description | +=============+======================+ | DEM | Elevation data (90m) | +-------------+----------------------+ Sample block parameters when using *WorldDEM 90m BBOX - Clipped* data block: .. code-block:: javascript { "red": "DEM", "blue": "DEM", "green": "DEM", "satellite": "WorldDEM 90m BBOX - Clipped" }