First Commit
This commit is contained in:
149
.gitignore
vendored
Normal file
149
.gitignore
vendored
Normal file
@@ -0,0 +1,149 @@
|
||||
# Django #
|
||||
*.log
|
||||
*.pot
|
||||
*.pyc
|
||||
__pycache__
|
||||
db.sqlite3*
|
||||
media
|
||||
|
||||
# Backup files #
|
||||
*.bak
|
||||
|
||||
# If you are using PyCharm #
|
||||
# User-specific stuff
|
||||
.idea/**/workspace.xml
|
||||
.idea/**/tasks.xml
|
||||
.idea/**/usage.statistics.xml
|
||||
.idea/**/dictionaries
|
||||
.idea/**/shelf
|
||||
|
||||
# AWS User-specific
|
||||
.idea/**/aws.xml
|
||||
|
||||
# Generated files
|
||||
.idea/**/contentModel.xml
|
||||
|
||||
# Sensitive or high-churn files
|
||||
.idea/**/dataSources/
|
||||
.idea/**/dataSources.ids
|
||||
.idea/**/dataSources.local.xml
|
||||
.idea/**/sqlDataSources.xml
|
||||
.idea/**/dynamic.xml
|
||||
.idea/**/uiDesigner.xml
|
||||
.idea/**/dbnavigator.xml
|
||||
|
||||
# Gradle
|
||||
.idea/**/gradle.xml
|
||||
.idea/**/libraries
|
||||
|
||||
# File-based project format
|
||||
*.iws
|
||||
|
||||
# IntelliJ
|
||||
out/
|
||||
|
||||
# JIRA plugin
|
||||
atlassian-ide-plugin.xml
|
||||
|
||||
# Python #
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
|
||||
# Distribution / packaging
|
||||
.Python build/
|
||||
develop-eggs/
|
||||
dist/
|
||||
downloads/
|
||||
eggs/
|
||||
.eggs/
|
||||
lib/
|
||||
lib64/
|
||||
parts/
|
||||
sdist/
|
||||
var/
|
||||
wheels/
|
||||
*.egg-info/
|
||||
.installed.cfg
|
||||
*.egg
|
||||
*.manifest
|
||||
*.spec
|
||||
|
||||
# Installer logs
|
||||
pip-log.txt
|
||||
pip-delete-this-directory.txt
|
||||
|
||||
# Unit test / coverage reports
|
||||
htmlcov/
|
||||
.tox/
|
||||
.coverage
|
||||
.coverage.*
|
||||
.cache
|
||||
.pytest_cache/
|
||||
nosetests.xml
|
||||
coverage.xml
|
||||
*.cover
|
||||
.hypothesis/
|
||||
|
||||
# Jupyter Notebook
|
||||
.ipynb_checkpoints
|
||||
|
||||
# pyenv
|
||||
.python-version
|
||||
|
||||
# celery
|
||||
celerybeat-schedule.*
|
||||
|
||||
# SageMath parsed files
|
||||
*.sage.py
|
||||
|
||||
# Environments
|
||||
.env
|
||||
.venv
|
||||
env/
|
||||
venv/
|
||||
ENV/
|
||||
env.bak/
|
||||
venv.bak/
|
||||
|
||||
# mkdocs documentation
|
||||
/site
|
||||
|
||||
# mypy
|
||||
.mypy_cache/
|
||||
|
||||
# Sublime Text #
|
||||
*.tmlanguage.cache
|
||||
*.tmPreferences.cache
|
||||
*.stTheme.cache
|
||||
*.sublime-workspace
|
||||
*.sublime-project
|
||||
|
||||
# sftp configuration file
|
||||
sftp-config.json
|
||||
|
||||
# Package control specific files Package
|
||||
Control.last-run
|
||||
Control.ca-list
|
||||
Control.ca-bundle
|
||||
Control.system-ca-bundle
|
||||
GitHub.sublime-settings
|
||||
|
||||
# Visual Studio Code #
|
||||
.vscode/*
|
||||
!.vscode/settings.json
|
||||
!.vscode/tasks.json
|
||||
!.vscode/launch.json
|
||||
!.vscode/extensions.json
|
||||
.history
|
||||
|
||||
# Static
|
||||
/static
|
||||
|
||||
# Media
|
||||
/media
|
||||
|
||||
# Assets downloads
|
||||
/assets_download
|
||||
|
||||
# Assets watermark
|
||||
/assets_watermark
|
||||
373
PS_analysis_segment_threshold.ipynb
Normal file
373
PS_analysis_segment_threshold.ipynb
Normal file
File diff suppressed because one or more lines are too long
736
PS_analysis_veg_indices.ipynb
Normal file
736
PS_analysis_veg_indices.ipynb
Normal file
File diff suppressed because one or more lines are too long
BIN
PS_preprocess_flowchart.png
Normal file
BIN
PS_preprocess_flowchart.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 118 KiB |
964
PS_preprocess_reflectance_images.ipynb
Normal file
964
PS_preprocess_reflectance_images.ipynb
Normal file
File diff suppressed because one or more lines are too long
1051
PS_preprocess_reflectance_mosaic.ipynb
Normal file
1051
PS_preprocess_reflectance_mosaic.ipynb
Normal file
File diff suppressed because it is too large
Load Diff
40
README.md
Normal file
40
README.md
Normal file
@@ -0,0 +1,40 @@
|
||||
## Preprocessing of Planetscope 4-band imagery
|
||||
|
||||
This repository contains scripts for preprocessing and basic analysis of Planetscope imagery.
|
||||
Code is based on notebooks from [Planetlabs](https://github.com/planetlabs/notebooks).
|
||||
|
||||
|
||||
## Available notebooks
|
||||
|
||||
### Preprocessing
|
||||
* [PS_preprocess_reflectance_images](https://github.com/t-haakens/Planet_processing/blob/main/PS_preprocess_reflectance_images.ipynb)
|
||||
|
||||
Preprocess multiple images that does not need mosaicing.
|
||||
Convert Radiance to Reflectance. Deliver images scaled/unscaled, with/without clipping to AOI (area of interest).
|
||||
|
||||
* [PS_preprocess_reflectance_mosaic](https://github.com/t-haakens/Planet_processing/blob/main/PS_preprocess_reflectance_mosaic.ipynb)
|
||||
|
||||
For large AOI's that require several scenes/images (mosaic) to cover the AOI.
|
||||
Convert Radiance to Reflectance. Deliver images or the mosaic scaled/unscaled, with/without clipping to AOI.
|
||||
|
||||
<br>
|
||||
|
||||
### Analysis
|
||||
|
||||
* [PS_analysis_veg_indices](https://github.com/t-haakens/Planet_processing/blob/main/PS_analysis_veg_indices.ipynb)
|
||||
|
||||
Takes reflectance images as input, calculate, visualize and export vegetation indices from PS 4-band imagery.
|
||||
**Vegetation indices**: NDVI, EVI, SAVI, MSAVI2, ARVI, IPVI, DVI, RVI
|
||||
|
||||
* [PS_analysis_segment_threshold](https://github.com/t-haakens/Planet_processing/blob/main/PS_analysis_segment_threshold.ipynb)
|
||||
|
||||
Takes vegetation indices as input, apply thresholding to segment image, smoothen with majority filter and export mask.
|
||||
|
||||
<br>
|
||||
|
||||
Flowchart illustrating the process going from radiance images to a reflectance mosaic clipped to an AOI.
|
||||
|
||||
<img src="https://github.com/t-haakens/Planet_processing/blob/main/PS_preprocess_flowchart.png" width="700">
|
||||
|
||||
> **Note**: If GitHub isn't rendering the images, consider downloading them for local viewing:
|
||||
> [Download Flowchart](https://github.com/t-haakens/Planetscope_preprocessing/raw/main/PS_preprocess_flowchart.png)
|
||||
@@ -0,0 +1,400 @@
|
||||
{
|
||||
"type": "Feature",
|
||||
"stac_version": "1.0.0",
|
||||
"id": "20240424_032609_49_24f8",
|
||||
"properties": {
|
||||
"updated": "2024-04-25T04:31:17Z",
|
||||
"created": "2024-04-24T07:11:27Z",
|
||||
"gsd": 4,
|
||||
"constellation": "planetscope",
|
||||
"platform": "24f8",
|
||||
"instruments": [
|
||||
"PSB.SD"
|
||||
],
|
||||
"eo:cloud_cover": 2,
|
||||
"view:off_nadir": 3.3,
|
||||
"view:azimuth": 97.3,
|
||||
"view:sun_azimuth": 51,
|
||||
"view:sun_elevation": 61.6,
|
||||
"pl:ground_control": true,
|
||||
"pl:item_type": "PSScene",
|
||||
"pl:pixel_resolution": 3,
|
||||
"pl:publishing_stage": "finalized",
|
||||
"pl:quality_category": "standard",
|
||||
"pl:strip_id": "7262351",
|
||||
"published": "2024-04-24T07:11:27Z",
|
||||
"datetime": "2024-04-24T03:26:09.499587Z"
|
||||
},
|
||||
"geometry": {
|
||||
"type": "Polygon",
|
||||
"coordinates": [
|
||||
[
|
||||
[
|
||||
105.24421172,
|
||||
-4.73470122
|
||||
],
|
||||
[
|
||||
105.24421172,
|
||||
-4.708206
|
||||
],
|
||||
[
|
||||
105.27955762,
|
||||
-4.708206
|
||||
],
|
||||
[
|
||||
105.27955762,
|
||||
-4.73470122
|
||||
],
|
||||
[
|
||||
105.24421172,
|
||||
-4.73470122
|
||||
]
|
||||
]
|
||||
]
|
||||
},
|
||||
"links": [
|
||||
{
|
||||
"rel": "root",
|
||||
"href": "../catalog.json",
|
||||
"type": "application/json"
|
||||
},
|
||||
{
|
||||
"rel": "collection",
|
||||
"href": "./PSScene_collection.json",
|
||||
"type": "application/json"
|
||||
},
|
||||
{
|
||||
"rel": "parent",
|
||||
"href": "./PSScene_collection.json",
|
||||
"type": "application/json"
|
||||
}
|
||||
],
|
||||
"assets": {
|
||||
"20240424_032609_49_24f8_metadata_json": {
|
||||
"href": "./20240424_032609_49_24f8_metadata.json",
|
||||
"type": "application/json",
|
||||
"roles": [
|
||||
"metadata"
|
||||
]
|
||||
},
|
||||
"20240424_032609_49_24f8_3B_AnalyticMS_8b_metadata_clip_xml": {
|
||||
"href": "./20240424_032609_49_24f8_3B_AnalyticMS_8b_metadata_clip.xml",
|
||||
"type": "text/xml",
|
||||
"pl:asset_type": "ortho_analytic_8b_xml",
|
||||
"pl:bundle_type": "analytic_8b_sr_udm2",
|
||||
"roles": [
|
||||
"metadata"
|
||||
]
|
||||
},
|
||||
"20240424_032609_49_24f8_3B_udm2_clip_tif": {
|
||||
"href": "./20240424_032609_49_24f8_3B_udm2_clip.tif",
|
||||
"type": "image/tiff; application=geotiff; profile=cloud-optimized",
|
||||
"pl:asset_type": "ortho_udm2",
|
||||
"pl:bundle_type": "analytic_8b_sr_udm2",
|
||||
"raster:bands": [
|
||||
{
|
||||
"data_type": "uint8",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 0.0,
|
||||
"maximum": 1.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"data_type": "uint8",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 0.0,
|
||||
"maximum": 0.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"data_type": "uint8",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 0.0,
|
||||
"maximum": 1.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"data_type": "uint8",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 0.0,
|
||||
"maximum": 1.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"data_type": "uint8",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 0.0,
|
||||
"maximum": 0.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"data_type": "uint8",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 0.0,
|
||||
"maximum": 1.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"data_type": "uint8",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 0.0,
|
||||
"maximum": 98.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"data_type": "uint8",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 0.0,
|
||||
"maximum": 2.0
|
||||
}
|
||||
}
|
||||
],
|
||||
"eo:bands": [
|
||||
{
|
||||
"name": "B1",
|
||||
"description": "Clear map (0: not clear, 1: clear)"
|
||||
},
|
||||
{
|
||||
"name": "B2",
|
||||
"description": "Snow map (0: no snow or ice, 1: snow or ice)"
|
||||
},
|
||||
{
|
||||
"name": "B3",
|
||||
"description": "Shadow map (0: no shadow, 1: shadow)"
|
||||
},
|
||||
{
|
||||
"name": "B4",
|
||||
"description": "Light haze map (0: no light haze, 1: light haze)"
|
||||
},
|
||||
{
|
||||
"name": "B5",
|
||||
"description": "Heavy haze map (0: no heavy haze, 1: heavy haze)"
|
||||
},
|
||||
{
|
||||
"name": "B6",
|
||||
"description": "Cloud map (0: no cloud, 1: cloud)"
|
||||
},
|
||||
{
|
||||
"name": "B7",
|
||||
"description": "Confidence map (percentage value: per-pixel algorithmic confidence in classification)"
|
||||
},
|
||||
{
|
||||
"name": "B8",
|
||||
"description": "Unusable pixels"
|
||||
}
|
||||
],
|
||||
"proj:epsg": 32748,
|
||||
"proj:bbox": [
|
||||
527082.0,
|
||||
9476655.0,
|
||||
531006.0,
|
||||
9479586.0
|
||||
],
|
||||
"proj:shape": [
|
||||
977,
|
||||
1308
|
||||
],
|
||||
"proj:transform": [
|
||||
3.0,
|
||||
0.0,
|
||||
527082.0,
|
||||
0.0,
|
||||
-3.0,
|
||||
9479586.0,
|
||||
0.0,
|
||||
0.0,
|
||||
1.0
|
||||
],
|
||||
"roles": [
|
||||
"data",
|
||||
"snow-ice",
|
||||
"cloud",
|
||||
"cloud-shadow"
|
||||
]
|
||||
},
|
||||
"20240424_032609_49_24f8_3B_AnalyticMS_SR_8b_clip_tif": {
|
||||
"href": "./20240424_032609_49_24f8_3B_AnalyticMS_SR_8b_clip.tif",
|
||||
"type": "image/tiff",
|
||||
"pl:asset_type": "ortho_analytic_8b_sr",
|
||||
"pl:bundle_type": "analytic_8b_sr_udm2",
|
||||
"raster:bands": [
|
||||
{
|
||||
"nodata": 0.0,
|
||||
"data_type": "uint16",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 352.0,
|
||||
"maximum": 2838.0
|
||||
},
|
||||
"scale": 0.0001
|
||||
},
|
||||
{
|
||||
"nodata": 0.0,
|
||||
"data_type": "uint16",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 367.0,
|
||||
"maximum": 2750.0
|
||||
},
|
||||
"scale": 0.0001
|
||||
},
|
||||
{
|
||||
"nodata": 0.0,
|
||||
"data_type": "uint16",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 448.0,
|
||||
"maximum": 2825.0
|
||||
},
|
||||
"scale": 0.0001
|
||||
},
|
||||
{
|
||||
"nodata": 0.0,
|
||||
"data_type": "uint16",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 499.0,
|
||||
"maximum": 2890.0
|
||||
},
|
||||
"scale": 0.0001
|
||||
},
|
||||
{
|
||||
"nodata": 0.0,
|
||||
"data_type": "uint16",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 464.0,
|
||||
"maximum": 2989.0
|
||||
},
|
||||
"scale": 0.0001
|
||||
},
|
||||
{
|
||||
"nodata": 0.0,
|
||||
"data_type": "uint16",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 380.0,
|
||||
"maximum": 2915.0
|
||||
},
|
||||
"scale": 0.0001
|
||||
},
|
||||
{
|
||||
"nodata": 0.0,
|
||||
"data_type": "uint16",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 474.0,
|
||||
"maximum": 3036.0
|
||||
},
|
||||
"scale": 0.0001
|
||||
},
|
||||
{
|
||||
"nodata": 0.0,
|
||||
"data_type": "uint16",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 1190.0,
|
||||
"maximum": 6443.0
|
||||
},
|
||||
"scale": 0.0001
|
||||
}
|
||||
],
|
||||
"eo:bands": [
|
||||
{
|
||||
"name": "Coastal Blue",
|
||||
"common_name": "coastal",
|
||||
"center_wavelength": 0.442,
|
||||
"full_width_half_max": 0.021
|
||||
},
|
||||
{
|
||||
"name": "Blue",
|
||||
"common_name": "blue",
|
||||
"center_wavelength": 0.49,
|
||||
"full_width_half_max": 0.05
|
||||
},
|
||||
{
|
||||
"name": "Green I",
|
||||
"center_wavelength": 0.531,
|
||||
"full_width_half_max": 0.036
|
||||
},
|
||||
{
|
||||
"name": "Green",
|
||||
"common_name": "green",
|
||||
"center_wavelength": 0.565,
|
||||
"full_width_half_max": 0.036
|
||||
},
|
||||
{
|
||||
"name": "Yellow",
|
||||
"common_name": "yellow",
|
||||
"center_wavelength": 0.61,
|
||||
"full_width_half_max": 0.02
|
||||
},
|
||||
{
|
||||
"name": "Red",
|
||||
"common_name": "red",
|
||||
"center_wavelength": 0.665,
|
||||
"full_width_half_max": 0.03
|
||||
},
|
||||
{
|
||||
"name": "Red Edge",
|
||||
"common_name": "rededge",
|
||||
"center_wavelength": 0.705,
|
||||
"full_width_half_max": 0.016
|
||||
},
|
||||
{
|
||||
"name": "Near-Infrared",
|
||||
"common_name": "nir",
|
||||
"center_wavelength": 0.865,
|
||||
"full_width_half_max": 0.04
|
||||
}
|
||||
],
|
||||
"proj:epsg": 32748,
|
||||
"proj:bbox": [
|
||||
527082.0,
|
||||
9476655.0,
|
||||
531006.0,
|
||||
9479586.0
|
||||
],
|
||||
"proj:shape": [
|
||||
977,
|
||||
1308
|
||||
],
|
||||
"proj:transform": [
|
||||
3.0,
|
||||
0.0,
|
||||
527082.0,
|
||||
0.0,
|
||||
-3.0,
|
||||
9479586.0,
|
||||
0.0,
|
||||
0.0,
|
||||
1.0
|
||||
],
|
||||
"roles": [
|
||||
"data",
|
||||
"reflectance"
|
||||
]
|
||||
}
|
||||
},
|
||||
"bbox": [
|
||||
105.24421172,
|
||||
-4.73470122,
|
||||
105.27955762,
|
||||
-4.708206
|
||||
],
|
||||
"stac_extensions": [
|
||||
"https://stac-extensions.github.io/eo/v1.0.0/schema.json",
|
||||
"https://stac-extensions.github.io/view/v1.0.0/schema.json",
|
||||
"https://stac-extensions.github.io/raster/v1.1.0/schema.json",
|
||||
"https://stac-extensions.github.io/projection/v1.1.0/schema.json"
|
||||
],
|
||||
"collection": "228a0535-63d9-4908-8dd3-f3b30cdcf421: PSScene"
|
||||
}
|
||||
@@ -0,0 +1,210 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ps:EarthObservation xsi:schemaLocation="http://schemas.planet.com/ps/v1/planet_product_metadata_geocorrected_level http://schemas.planet.com/ps/v1/planet_product_metadata_geocorrected_level.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:opt="http://earth.esa.int/opt" xmlns:gml="http://www.opengis.net/gml" xmlns:eop="http://earth.esa.int/eop" version="1.2.1" planet_standard_product_version="1.0" xmlns:ps="http://schemas.planet.com/ps/v1/planet_product_metadata_geocorrected_level">
|
||||
<gml:metaDataProperty>
|
||||
<ps:EarthObservationMetaData>
|
||||
<eop:identifier>20240424_032609_49_24f8_3B_AnalyticMS_8b</eop:identifier>
|
||||
<eop:acquisitionType>NOMINAL</eop:acquisitionType>
|
||||
<eop:productType>L3B</eop:productType>
|
||||
<eop:status>ARCHIVED</eop:status>
|
||||
<eop:downlinkedTo>
|
||||
<eop:DownlinkInformation>
|
||||
<eop:acquisitionStation codeSpace="urn:eop:PS:stationLocation">Planet Ground Station Network</eop:acquisitionStation>
|
||||
<eop:acquisitionDate>2024-04-24T03:26:09+00:00</eop:acquisitionDate>
|
||||
</eop:DownlinkInformation>
|
||||
</eop:downlinkedTo>
|
||||
<eop:archivedIn>
|
||||
<eop:ArchivingInformation>
|
||||
<eop:archivingCenter codeSpace="urn:eop:PS:stationLocation">Planet Archive Center</eop:archivingCenter>
|
||||
<eop:archivingDate>2024-04-24T03:26:09+00:00</eop:archivingDate>
|
||||
<eop:archivingIdentifier codeSpace="urn:eop:PS:dmsCatalogueId">7262351</eop:archivingIdentifier>
|
||||
</eop:ArchivingInformation>
|
||||
</eop:archivedIn>
|
||||
<eop:processing>
|
||||
<eop:ProcessingInformation>
|
||||
<eop:processorName>CMO Processor</eop:processorName>
|
||||
<eop:processorVersion>4.1.4</eop:processorVersion>
|
||||
<eop:nativeProductFormat>GeoTIFF</eop:nativeProductFormat>
|
||||
</eop:ProcessingInformation>
|
||||
</eop:processing>
|
||||
<ps:license>
|
||||
<ps:licenseType>20160101 - Inc - Single User</ps:licenseType>
|
||||
<ps:resourceLink xlink:title="PL EULA" xlink:href="https://assets.planet.com/docs/20160101_Inc_SingleUser.txt" />
|
||||
</ps:license>
|
||||
<ps:versionIsd>1.0</ps:versionIsd>
|
||||
<ps:pixelFormat>16U</ps:pixelFormat>
|
||||
</ps:EarthObservationMetaData>
|
||||
</gml:metaDataProperty>
|
||||
<gml:validTime>
|
||||
<gml:TimePeriod>
|
||||
<gml:beginPosition>2024-04-24T03:26:09+00:00</gml:beginPosition>
|
||||
<gml:endPosition>2024-04-24T03:26:09+00:00</gml:endPosition>
|
||||
</gml:TimePeriod>
|
||||
</gml:validTime>
|
||||
<gml:using>
|
||||
<eop:EarthObservationEquipment>
|
||||
<eop:platform>
|
||||
<eop:Platform>
|
||||
<eop:shortName>PlanetScope</eop:shortName>
|
||||
<eop:serialIdentifier>24f8</eop:serialIdentifier>
|
||||
<eop:orbitType>LEO-SSO</eop:orbitType>
|
||||
</eop:Platform>
|
||||
</eop:platform>
|
||||
<eop:instrument>
|
||||
<eop:Instrument>
|
||||
<eop:shortName>PSB.SD</eop:shortName>
|
||||
</eop:Instrument>
|
||||
</eop:instrument>
|
||||
<eop:sensor>
|
||||
<ps:Sensor>
|
||||
<eop:sensorType>OPTICAL</eop:sensorType>
|
||||
<eop:resolution uom="m">3.0000</eop:resolution>
|
||||
<ps:scanType>FRAME</ps:scanType>
|
||||
</ps:Sensor>
|
||||
</eop:sensor>
|
||||
<eop:acquisitionParameters>
|
||||
<ps:Acquisition>
|
||||
<eop:orbitDirection>DESCENDING</eop:orbitDirection>
|
||||
<eop:incidenceAngle uom="deg">3.571112e+00</eop:incidenceAngle>
|
||||
<opt:illuminationAzimuthAngle uom="deg">5.102354e+01</opt:illuminationAzimuthAngle>
|
||||
<opt:illuminationElevationAngle uom="deg">6.156907e+01</opt:illuminationElevationAngle>
|
||||
<ps:azimuthAngle uom="deg">1.120618e+01</ps:azimuthAngle>
|
||||
<ps:spaceCraftViewAngle uom="deg">3.302948e+00</ps:spaceCraftViewAngle>
|
||||
<ps:acquisitionDateTime>2024-04-24T03:26:09+00:00</ps:acquisitionDateTime>
|
||||
</ps:Acquisition>
|
||||
</eop:acquisitionParameters>
|
||||
</eop:EarthObservationEquipment>
|
||||
</gml:using>
|
||||
<gml:target>
|
||||
<ps:Footprint>
|
||||
<gml:multiExtentOf>
|
||||
<gml:MultiSurface srsName="EPSG:4326">
|
||||
<gml:surfaceMembers>
|
||||
<gml:Polygon>
|
||||
<gml:outerBoundaryIs>
|
||||
<gml:LinearRing>
|
||||
<gml:coordinates>105.24421172,-4.73470122 105.24421172,-4.708206 105.27955762,-4.708206 105.27955762,-4.73470122 105.24421172,-4.73470122</gml:coordinates>
|
||||
</gml:LinearRing>
|
||||
</gml:outerBoundaryIs>
|
||||
</gml:Polygon>
|
||||
</gml:surfaceMembers>
|
||||
</gml:MultiSurface>
|
||||
</gml:multiExtentOf>
|
||||
<gml:centerOf>
|
||||
<gml:Point srsName="EPSG:4326">
|
||||
<gml:pos>105.3916991774 -4.7515209346</gml:pos>
|
||||
</gml:Point>
|
||||
</gml:centerOf>
|
||||
<ps:geographicLocation>
|
||||
<ps:topLeft>
|
||||
<ps:latitude>-4.6278042772</ps:latitude>
|
||||
<ps:longitude>105.2182558385</ps:longitude>
|
||||
</ps:topLeft>
|
||||
<ps:topRight>
|
||||
<ps:latitude>-4.6278042772</ps:latitude>
|
||||
<ps:longitude>105.5651332730</ps:longitude>
|
||||
</ps:topRight>
|
||||
<ps:bottomRight>
|
||||
<ps:latitude>-4.8748821229</ps:latitude>
|
||||
<ps:longitude>105.5651332730</ps:longitude>
|
||||
</ps:bottomRight>
|
||||
<ps:bottomLeft>
|
||||
<ps:latitude>-4.8748821229</ps:latitude>
|
||||
<ps:longitude>105.2182558385</ps:longitude>
|
||||
</ps:bottomLeft>
|
||||
</ps:geographicLocation>
|
||||
</ps:Footprint>
|
||||
</gml:target>
|
||||
<gml:resultOf>
|
||||
<ps:EarthObservationResult>
|
||||
<eop:product>
|
||||
<ps:ProductInformation>
|
||||
<eop:fileName>/execdir/20240424_032609_49_24f8_3B_AnalyticMS_8b_clip.tif</eop:fileName>
|
||||
<ps:productFormat>GeoTIFF</ps:productFormat>
|
||||
<ps:spatialReferenceSystem>
|
||||
<ps:epsgCode>32748</ps:epsgCode>
|
||||
<ps:geodeticDatum>WGS_1984</ps:geodeticDatum>
|
||||
<ps:projection>WGS 84 / UTM zone 48S</ps:projection>
|
||||
<ps:projectionZone>148</ps:projectionZone>
|
||||
</ps:spatialReferenceSystem>
|
||||
<ps:resamplingKernel>CC</ps:resamplingKernel>
|
||||
<ps:numRows>977</ps:numRows>
|
||||
<ps:numColumns>1308</ps:numColumns>
|
||||
<ps:numBands>8</ps:numBands>
|
||||
<ps:rowGsd>3.0</ps:rowGsd>
|
||||
<ps:columnGsd>3.0</ps:columnGsd>
|
||||
<ps:radiometricCorrectionApplied>true</ps:radiometricCorrectionApplied>
|
||||
<ps:geoCorrectionLevel>Precision Geocorrection</ps:geoCorrectionLevel>
|
||||
<ps:elevationCorrectionApplied>FineDEM</ps:elevationCorrectionApplied>
|
||||
<ps:atmosphericCorrectionApplied>false</ps:atmosphericCorrectionApplied>
|
||||
</ps:ProductInformation>
|
||||
</eop:product>
|
||||
<eop:mask>
|
||||
<eop:MaskInformation>
|
||||
<eop:type>UNUSABLE DATA</eop:type>
|
||||
<eop:format>RASTER</eop:format>
|
||||
<eop:referenceSystemIdentifier codeSpace="EPSG">32748</eop:referenceSystemIdentifier>
|
||||
<eop:fileName>NA</eop:fileName>
|
||||
</eop:MaskInformation>
|
||||
</eop:mask>
|
||||
<opt:cloudCoverPercentage uom="percentage">1.11</opt:cloudCoverPercentage>
|
||||
<opt:cloudCoverPercentageQuotationMode>AUTOMATIC</opt:cloudCoverPercentageQuotationMode>
|
||||
<ps:unusableDataPercentage uom="percentage">0.0</ps:unusableDataPercentage>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>1</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>1.9012967837665903e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>2</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>1.8361982781016655e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>3</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>1.9624719001514638e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>4</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>1.9914996485248486e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>5</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.14039454816035e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>6</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.3970447759470552e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>7</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.5625891113555226e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>8</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>3.7939191713179176e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
</ps:EarthObservationResult>
|
||||
</gml:resultOf>
|
||||
</ps:EarthObservation>
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,61 @@
|
||||
{
|
||||
"id": "20240424_032609_49_24f8",
|
||||
"type": "Feature",
|
||||
"geometry": {
|
||||
"type": "Polygon",
|
||||
"coordinates": [
|
||||
[
|
||||
[
|
||||
105.24421172,
|
||||
-4.73470122
|
||||
],
|
||||
[
|
||||
105.24421172,
|
||||
-4.708206
|
||||
],
|
||||
[
|
||||
105.27955762,
|
||||
-4.708206
|
||||
],
|
||||
[
|
||||
105.27955762,
|
||||
-4.73470122
|
||||
],
|
||||
[
|
||||
105.24421172,
|
||||
-4.73470122
|
||||
]
|
||||
]
|
||||
]
|
||||
},
|
||||
"properties": {
|
||||
"acquired": "2024-04-24T03:26:09.499587Z",
|
||||
"anomalous_pixels": 0,
|
||||
"clear_confidence_percent": 86,
|
||||
"clear_percent": 90,
|
||||
"cloud_cover": 0.02,
|
||||
"cloud_percent": 2,
|
||||
"ground_control": true,
|
||||
"gsd": 4,
|
||||
"heavy_haze_percent": 0,
|
||||
"instrument": "PSB.SD",
|
||||
"item_type": "PSScene",
|
||||
"light_haze_percent": 6,
|
||||
"pixel_resolution": 3,
|
||||
"provider": "planetscope",
|
||||
"published": "2024-04-24T07:11:27Z",
|
||||
"publishing_stage": "finalized",
|
||||
"quality_category": "standard",
|
||||
"satellite_azimuth": 97.3,
|
||||
"satellite_id": "24f8",
|
||||
"shadow_percent": 1,
|
||||
"snow_ice_percent": 0,
|
||||
"strip_id": "7262351",
|
||||
"sun_azimuth": 51,
|
||||
"sun_elevation": 61.6,
|
||||
"updated": "2024-04-25T04:31:17Z",
|
||||
"view_angle": 3.3,
|
||||
"visible_confidence_percent": 73,
|
||||
"visible_percent": 98
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
{
|
||||
"type": "Collection",
|
||||
"id": "228a0535-63d9-4908-8dd3-f3b30cdcf421: PSScene",
|
||||
"stac_version": "1.0.0",
|
||||
"description": "PSScene",
|
||||
"links": [
|
||||
{
|
||||
"rel": "root",
|
||||
"href": "../catalog.json",
|
||||
"type": "application/json"
|
||||
},
|
||||
{
|
||||
"rel": "item",
|
||||
"href": "./20240424_032609_49_24f8.json",
|
||||
"type": "application/json"
|
||||
},
|
||||
{
|
||||
"rel": "parent",
|
||||
"href": "../catalog.json",
|
||||
"type": "application/json"
|
||||
}
|
||||
],
|
||||
"pl:item_type": "PSScene",
|
||||
"extent": {
|
||||
"spatial": {
|
||||
"bbox": [
|
||||
[
|
||||
105.24421172,
|
||||
-4.73470122,
|
||||
105.27955762,
|
||||
-4.708206
|
||||
]
|
||||
]
|
||||
},
|
||||
"temporal": {
|
||||
"interval": [
|
||||
[
|
||||
"2024-04-24T03:26:09.499587Z",
|
||||
"2024-04-24T03:26:09.499587Z"
|
||||
]
|
||||
]
|
||||
}
|
||||
},
|
||||
"license": "proprietary"
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"type": "Catalog",
|
||||
"id": "228a0535-63d9-4908-8dd3-f3b30cdcf421",
|
||||
"stac_version": "1.0.0",
|
||||
"description": "8 band-24 apr 2024",
|
||||
"links": [
|
||||
{
|
||||
"rel": "root",
|
||||
"href": "./catalog.json",
|
||||
"type": "application/json"
|
||||
},
|
||||
{
|
||||
"rel": "child",
|
||||
"href": "./PSScene/PSScene_collection.json",
|
||||
"type": "application/json"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
{"name":"","files":[{"path":"PSScene/20240424_032609_49_24f8_metadata.json","media_type":"text/plain","size":1652,"digests":{"md5":"760c7db1690e3f89099fe6c64668d9a2","sha256":"25df60bf1b71b07cb4478d901dd0faedef8e8c3113d90ba51105c16884086c04"},"annotations":{"planet/item_id":"20240424_032609_49_24f8","planet/item_type":"PSScene"}},{"path":"PSScene/20240424_032609_49_24f8_3B_udm2_clip.tif","media_type":"image/tiff","size":225188,"digests":{"md5":"1c43e84ed68d2416c5202788acfce587","sha256":"4dc4467435ef2564c45f38730653ce75ba3e03ad1a1acdf2204637826d906314"},"annotations":{"planet/asset_type":"ortho_udm2","planet/bundle_type":"analytic_8b_sr_udm2","planet/item_id":"20240424_032609_49_24f8","planet/item_type":"PSScene"}},{"path":"PSScene/20240424_032609_49_24f8_3B_AnalyticMS_8b_metadata_clip.xml","media_type":"text/xml","size":11015,"digests":{"md5":"2675b0c4f69ebcd1dd5c85e591378228","sha256":"528ab2942980b809de13661aa4057e3800b2106bef666bd691d3bea67041255d"},"annotations":{"planet/asset_type":"ortho_analytic_8b_xml","planet/bundle_type":"analytic_8b_sr_udm2","planet/item_id":"20240424_032609_49_24f8","planet/item_type":"PSScene"}},{"path":"PSScene/PSScene_collection.json","media_type":"application/json","size":860,"digests":{"md5":"e8b1815fe8646dd2b4b8a2db9c9f3c36","sha256":"5708caf4ff4224ed644389af1755ba349740902166b67d9999103f7bf23d38e8"},"annotations":{"planet/item_type":"PSScene"}},{"path":"catalog.json","media_type":"application/json","size":372,"digests":{"md5":"5c55b835188b79100df2d735fb14c502","sha256":"916979f844c88d69d8080d156bb8ce08b969f4e830db2a2dc03438dfbcbedfb6"},"annotations":{}},{"path":"PSScene/20240424_032609_49_24f8.json","media_type":"application/json","size":9549,"digests":{"md5":"fea1e8471f53a55c78844dde35084a99","sha256":"f93f3f69a6d0b1f3229af5411c914e072a98e7c88330c80c99a8817239dee37c"},"annotations":{"planet/item_id":"20240424_032609_49_24f8","planet/item_type":"PSScene"}},{"path":"PSScene/20240424_032609_49_24f8_3B_AnalyticMS_SR_8b_clip.tif","media_type":"image/tiff","size":13904157,"digests":{"md5":"5c10fe02ee2600aa1c04745a107a2743","sha256":"2dd3069a16716992b3b16b2ca35ebc8bb43045a6d30f5c4981f81c41dd46fbc2"},"annotations":{"planet/asset_type":"ortho_analytic_8b_sr","planet/bundle_type":"analytic_8b_sr_udm2","planet/item_id":"20240424_032609_49_24f8","planet/item_type":"PSScene"}}]}
|
||||
@@ -0,0 +1,400 @@
|
||||
{
|
||||
"type": "Feature",
|
||||
"stac_version": "1.0.0",
|
||||
"id": "20240202_023105_71_24bf",
|
||||
"properties": {
|
||||
"updated": "2024-02-03T04:30:31Z",
|
||||
"created": "2024-02-02T07:14:26Z",
|
||||
"gsd": 3.8,
|
||||
"constellation": "planetscope",
|
||||
"platform": "24bf",
|
||||
"instruments": [
|
||||
"PSB.SD"
|
||||
],
|
||||
"eo:cloud_cover": 0,
|
||||
"view:off_nadir": 3,
|
||||
"view:azimuth": 96.9,
|
||||
"view:sun_azimuth": 110.5,
|
||||
"view:sun_elevation": 48.9,
|
||||
"pl:ground_control": true,
|
||||
"pl:item_type": "PSScene",
|
||||
"pl:pixel_resolution": 3,
|
||||
"pl:publishing_stage": "finalized",
|
||||
"pl:quality_category": "standard",
|
||||
"pl:strip_id": "7081049",
|
||||
"published": "2024-02-02T07:14:26Z",
|
||||
"datetime": "2024-02-02T02:31:05.719134Z"
|
||||
},
|
||||
"geometry": {
|
||||
"type": "Polygon",
|
||||
"coordinates": [
|
||||
[
|
||||
[
|
||||
105.24421172,
|
||||
-4.73470122
|
||||
],
|
||||
[
|
||||
105.24421172,
|
||||
-4.708206
|
||||
],
|
||||
[
|
||||
105.27955762,
|
||||
-4.708206
|
||||
],
|
||||
[
|
||||
105.27955762,
|
||||
-4.73470122
|
||||
],
|
||||
[
|
||||
105.24421172,
|
||||
-4.73470122
|
||||
]
|
||||
]
|
||||
]
|
||||
},
|
||||
"links": [
|
||||
{
|
||||
"rel": "root",
|
||||
"href": "../catalog.json",
|
||||
"type": "application/json"
|
||||
},
|
||||
{
|
||||
"rel": "collection",
|
||||
"href": "./PSScene_collection.json",
|
||||
"type": "application/json"
|
||||
},
|
||||
{
|
||||
"rel": "parent",
|
||||
"href": "./PSScene_collection.json",
|
||||
"type": "application/json"
|
||||
}
|
||||
],
|
||||
"assets": {
|
||||
"20240202_023105_71_24bf_metadata_json": {
|
||||
"href": "./20240202_023105_71_24bf_metadata.json",
|
||||
"type": "application/json",
|
||||
"roles": [
|
||||
"metadata"
|
||||
]
|
||||
},
|
||||
"20240202_023105_71_24bf_3B_AnalyticMS_8b_metadata_clip_xml": {
|
||||
"href": "./20240202_023105_71_24bf_3B_AnalyticMS_8b_metadata_clip.xml",
|
||||
"type": "text/xml",
|
||||
"pl:asset_type": "ortho_analytic_8b_xml",
|
||||
"pl:bundle_type": "analytic_8b_sr_udm2",
|
||||
"roles": [
|
||||
"metadata"
|
||||
]
|
||||
},
|
||||
"20240202_023105_71_24bf_3B_udm2_clip_tif": {
|
||||
"href": "./20240202_023105_71_24bf_3B_udm2_clip.tif",
|
||||
"type": "image/tiff; application=geotiff; profile=cloud-optimized",
|
||||
"pl:asset_type": "ortho_udm2",
|
||||
"pl:bundle_type": "analytic_8b_sr_udm2",
|
||||
"raster:bands": [
|
||||
{
|
||||
"data_type": "uint8",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 0.0,
|
||||
"maximum": 1.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"data_type": "uint8",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 0.0,
|
||||
"maximum": 0.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"data_type": "uint8",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 0.0,
|
||||
"maximum": 0.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"data_type": "uint8",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 0.0,
|
||||
"maximum": 0.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"data_type": "uint8",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 0.0,
|
||||
"maximum": 0.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"data_type": "uint8",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 0.0,
|
||||
"maximum": 0.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"data_type": "uint8",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 0.0,
|
||||
"maximum": 100.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"data_type": "uint8",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 0.0,
|
||||
"maximum": 1.0
|
||||
}
|
||||
}
|
||||
],
|
||||
"eo:bands": [
|
||||
{
|
||||
"name": "B1",
|
||||
"description": "Clear map (0: not clear, 1: clear)"
|
||||
},
|
||||
{
|
||||
"name": "B2",
|
||||
"description": "Snow map (0: no snow or ice, 1: snow or ice)"
|
||||
},
|
||||
{
|
||||
"name": "B3",
|
||||
"description": "Shadow map (0: no shadow, 1: shadow)"
|
||||
},
|
||||
{
|
||||
"name": "B4",
|
||||
"description": "Light haze map (0: no light haze, 1: light haze)"
|
||||
},
|
||||
{
|
||||
"name": "B5",
|
||||
"description": "Heavy haze map (0: no heavy haze, 1: heavy haze)"
|
||||
},
|
||||
{
|
||||
"name": "B6",
|
||||
"description": "Cloud map (0: no cloud, 1: cloud)"
|
||||
},
|
||||
{
|
||||
"name": "B7",
|
||||
"description": "Confidence map (percentage value: per-pixel algorithmic confidence in classification)"
|
||||
},
|
||||
{
|
||||
"name": "B8",
|
||||
"description": "Unusable pixels"
|
||||
}
|
||||
],
|
||||
"proj:epsg": 32748,
|
||||
"proj:bbox": [
|
||||
527082.0,
|
||||
9476655.0,
|
||||
531006.0,
|
||||
9479586.0
|
||||
],
|
||||
"proj:shape": [
|
||||
977,
|
||||
1308
|
||||
],
|
||||
"proj:transform": [
|
||||
3.0,
|
||||
0.0,
|
||||
527082.0,
|
||||
0.0,
|
||||
-3.0,
|
||||
9479586.0,
|
||||
0.0,
|
||||
0.0,
|
||||
1.0
|
||||
],
|
||||
"roles": [
|
||||
"data",
|
||||
"snow-ice",
|
||||
"cloud",
|
||||
"cloud-shadow"
|
||||
]
|
||||
},
|
||||
"20240202_023105_71_24bf_3B_AnalyticMS_SR_8b_clip_tif": {
|
||||
"href": "./20240202_023105_71_24bf_3B_AnalyticMS_SR_8b_clip.tif",
|
||||
"type": "image/tiff",
|
||||
"pl:asset_type": "ortho_analytic_8b_sr",
|
||||
"pl:bundle_type": "analytic_8b_sr_udm2",
|
||||
"raster:bands": [
|
||||
{
|
||||
"nodata": 0.0,
|
||||
"data_type": "uint16",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 63.0,
|
||||
"maximum": 948.0
|
||||
},
|
||||
"scale": 0.0001
|
||||
},
|
||||
{
|
||||
"nodata": 0.0,
|
||||
"data_type": "uint16",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 170.0,
|
||||
"maximum": 1031.0
|
||||
},
|
||||
"scale": 0.0001
|
||||
},
|
||||
{
|
||||
"nodata": 0.0,
|
||||
"data_type": "uint16",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 239.0,
|
||||
"maximum": 1303.0
|
||||
},
|
||||
"scale": 0.0001
|
||||
},
|
||||
{
|
||||
"nodata": 0.0,
|
||||
"data_type": "uint16",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 262.0,
|
||||
"maximum": 1437.0
|
||||
},
|
||||
"scale": 0.0001
|
||||
},
|
||||
{
|
||||
"nodata": 0.0,
|
||||
"data_type": "uint16",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 232.0,
|
||||
"maximum": 1676.0
|
||||
},
|
||||
"scale": 0.0001
|
||||
},
|
||||
{
|
||||
"nodata": 0.0,
|
||||
"data_type": "uint16",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 191.0,
|
||||
"maximum": 1820.0
|
||||
},
|
||||
"scale": 0.0001
|
||||
},
|
||||
{
|
||||
"nodata": 0.0,
|
||||
"data_type": "uint16",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 275.0,
|
||||
"maximum": 2094.0
|
||||
},
|
||||
"scale": 0.0001
|
||||
},
|
||||
{
|
||||
"nodata": 0.0,
|
||||
"data_type": "uint16",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 621.0,
|
||||
"maximum": 6069.0
|
||||
},
|
||||
"scale": 0.0001
|
||||
}
|
||||
],
|
||||
"eo:bands": [
|
||||
{
|
||||
"name": "Coastal Blue",
|
||||
"common_name": "coastal",
|
||||
"center_wavelength": 0.442,
|
||||
"full_width_half_max": 0.021
|
||||
},
|
||||
{
|
||||
"name": "Blue",
|
||||
"common_name": "blue",
|
||||
"center_wavelength": 0.49,
|
||||
"full_width_half_max": 0.05
|
||||
},
|
||||
{
|
||||
"name": "Green I",
|
||||
"center_wavelength": 0.531,
|
||||
"full_width_half_max": 0.036
|
||||
},
|
||||
{
|
||||
"name": "Green",
|
||||
"common_name": "green",
|
||||
"center_wavelength": 0.565,
|
||||
"full_width_half_max": 0.036
|
||||
},
|
||||
{
|
||||
"name": "Yellow",
|
||||
"common_name": "yellow",
|
||||
"center_wavelength": 0.61,
|
||||
"full_width_half_max": 0.02
|
||||
},
|
||||
{
|
||||
"name": "Red",
|
||||
"common_name": "red",
|
||||
"center_wavelength": 0.665,
|
||||
"full_width_half_max": 0.03
|
||||
},
|
||||
{
|
||||
"name": "Red Edge",
|
||||
"common_name": "rededge",
|
||||
"center_wavelength": 0.705,
|
||||
"full_width_half_max": 0.016
|
||||
},
|
||||
{
|
||||
"name": "Near-Infrared",
|
||||
"common_name": "nir",
|
||||
"center_wavelength": 0.865,
|
||||
"full_width_half_max": 0.04
|
||||
}
|
||||
],
|
||||
"proj:epsg": 32748,
|
||||
"proj:bbox": [
|
||||
527082.0,
|
||||
9476655.0,
|
||||
531006.0,
|
||||
9479586.0
|
||||
],
|
||||
"proj:shape": [
|
||||
977,
|
||||
1308
|
||||
],
|
||||
"proj:transform": [
|
||||
3.0,
|
||||
0.0,
|
||||
527082.0,
|
||||
0.0,
|
||||
-3.0,
|
||||
9479586.0,
|
||||
0.0,
|
||||
0.0,
|
||||
1.0
|
||||
],
|
||||
"roles": [
|
||||
"data",
|
||||
"reflectance"
|
||||
]
|
||||
}
|
||||
},
|
||||
"bbox": [
|
||||
105.24421172,
|
||||
-4.73470122,
|
||||
105.27955762,
|
||||
-4.708206
|
||||
],
|
||||
"stac_extensions": [
|
||||
"https://stac-extensions.github.io/eo/v1.0.0/schema.json",
|
||||
"https://stac-extensions.github.io/view/v1.0.0/schema.json",
|
||||
"https://stac-extensions.github.io/raster/v1.1.0/schema.json",
|
||||
"https://stac-extensions.github.io/projection/v1.1.0/schema.json"
|
||||
],
|
||||
"collection": "3309881f-572a-4432-a3d0-5547a2b357f4: PSScene"
|
||||
}
|
||||
@@ -0,0 +1,210 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ps:EarthObservation xsi:schemaLocation="http://schemas.planet.com/ps/v1/planet_product_metadata_geocorrected_level http://schemas.planet.com/ps/v1/planet_product_metadata_geocorrected_level.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:opt="http://earth.esa.int/opt" xmlns:gml="http://www.opengis.net/gml" xmlns:eop="http://earth.esa.int/eop" version="1.2.1" planet_standard_product_version="1.0" xmlns:ps="http://schemas.planet.com/ps/v1/planet_product_metadata_geocorrected_level">
|
||||
<gml:metaDataProperty>
|
||||
<ps:EarthObservationMetaData>
|
||||
<eop:identifier>20240202_023105_71_24bf_3B_AnalyticMS_8b</eop:identifier>
|
||||
<eop:acquisitionType>NOMINAL</eop:acquisitionType>
|
||||
<eop:productType>L3B</eop:productType>
|
||||
<eop:status>ARCHIVED</eop:status>
|
||||
<eop:downlinkedTo>
|
||||
<eop:DownlinkInformation>
|
||||
<eop:acquisitionStation codeSpace="urn:eop:PS:stationLocation">Planet Ground Station Network</eop:acquisitionStation>
|
||||
<eop:acquisitionDate>2024-02-02T02:31:05+00:00</eop:acquisitionDate>
|
||||
</eop:DownlinkInformation>
|
||||
</eop:downlinkedTo>
|
||||
<eop:archivedIn>
|
||||
<eop:ArchivingInformation>
|
||||
<eop:archivingCenter codeSpace="urn:eop:PS:stationLocation">Planet Archive Center</eop:archivingCenter>
|
||||
<eop:archivingDate>2024-02-02T02:31:05+00:00</eop:archivingDate>
|
||||
<eop:archivingIdentifier codeSpace="urn:eop:PS:dmsCatalogueId">7081049</eop:archivingIdentifier>
|
||||
</eop:ArchivingInformation>
|
||||
</eop:archivedIn>
|
||||
<eop:processing>
|
||||
<eop:ProcessingInformation>
|
||||
<eop:processorName>CMO Processor</eop:processorName>
|
||||
<eop:processorVersion>4.1.4</eop:processorVersion>
|
||||
<eop:nativeProductFormat>GeoTIFF</eop:nativeProductFormat>
|
||||
</eop:ProcessingInformation>
|
||||
</eop:processing>
|
||||
<ps:license>
|
||||
<ps:licenseType>20160101 - Inc - Single User</ps:licenseType>
|
||||
<ps:resourceLink xlink:title="PL EULA" xlink:href="https://assets.planet.com/docs/20160101_Inc_SingleUser.txt" />
|
||||
</ps:license>
|
||||
<ps:versionIsd>1.0</ps:versionIsd>
|
||||
<ps:pixelFormat>16U</ps:pixelFormat>
|
||||
</ps:EarthObservationMetaData>
|
||||
</gml:metaDataProperty>
|
||||
<gml:validTime>
|
||||
<gml:TimePeriod>
|
||||
<gml:beginPosition>2024-02-02T02:31:05+00:00</gml:beginPosition>
|
||||
<gml:endPosition>2024-02-02T02:31:05+00:00</gml:endPosition>
|
||||
</gml:TimePeriod>
|
||||
</gml:validTime>
|
||||
<gml:using>
|
||||
<eop:EarthObservationEquipment>
|
||||
<eop:platform>
|
||||
<eop:Platform>
|
||||
<eop:shortName>PlanetScope</eop:shortName>
|
||||
<eop:serialIdentifier>24bf</eop:serialIdentifier>
|
||||
<eop:orbitType>LEO-SSO</eop:orbitType>
|
||||
</eop:Platform>
|
||||
</eop:platform>
|
||||
<eop:instrument>
|
||||
<eop:Instrument>
|
||||
<eop:shortName>PSB.SD</eop:shortName>
|
||||
</eop:Instrument>
|
||||
</eop:instrument>
|
||||
<eop:sensor>
|
||||
<ps:Sensor>
|
||||
<eop:sensorType>OPTICAL</eop:sensorType>
|
||||
<eop:resolution uom="m">3.0000</eop:resolution>
|
||||
<ps:scanType>FRAME</ps:scanType>
|
||||
</ps:Sensor>
|
||||
</eop:sensor>
|
||||
<eop:acquisitionParameters>
|
||||
<ps:Acquisition>
|
||||
<eop:orbitDirection>DESCENDING</eop:orbitDirection>
|
||||
<eop:incidenceAngle uom="deg">3.217626e+00</eop:incidenceAngle>
|
||||
<opt:illuminationAzimuthAngle uom="deg">1.105151e+02</opt:illuminationAzimuthAngle>
|
||||
<opt:illuminationElevationAngle uom="deg">4.885608e+01</opt:illuminationElevationAngle>
|
||||
<ps:azimuthAngle uom="deg">1.117665e+01</ps:azimuthAngle>
|
||||
<ps:spaceCraftViewAngle uom="deg">2.985393e+00</ps:spaceCraftViewAngle>
|
||||
<ps:acquisitionDateTime>2024-02-02T02:31:05+00:00</ps:acquisitionDateTime>
|
||||
</ps:Acquisition>
|
||||
</eop:acquisitionParameters>
|
||||
</eop:EarthObservationEquipment>
|
||||
</gml:using>
|
||||
<gml:target>
|
||||
<ps:Footprint>
|
||||
<gml:multiExtentOf>
|
||||
<gml:MultiSurface srsName="EPSG:4326">
|
||||
<gml:surfaceMembers>
|
||||
<gml:Polygon>
|
||||
<gml:outerBoundaryIs>
|
||||
<gml:LinearRing>
|
||||
<gml:coordinates>105.24421172,-4.73470122 105.24421172,-4.708206 105.27955762,-4.708206 105.27955762,-4.73470122 105.24421172,-4.73470122</gml:coordinates>
|
||||
</gml:LinearRing>
|
||||
</gml:outerBoundaryIs>
|
||||
</gml:Polygon>
|
||||
</gml:surfaceMembers>
|
||||
</gml:MultiSurface>
|
||||
</gml:multiExtentOf>
|
||||
<gml:centerOf>
|
||||
<gml:Point srsName="EPSG:4326">
|
||||
<gml:pos>105.2560120567 -4.7223810076</gml:pos>
|
||||
</gml:Point>
|
||||
</gml:centerOf>
|
||||
<ps:geographicLocation>
|
||||
<ps:topLeft>
|
||||
<ps:latitude>-4.6025390042</ps:latitude>
|
||||
<ps:longitude>105.0878255188</ps:longitude>
|
||||
</ps:topLeft>
|
||||
<ps:topRight>
|
||||
<ps:latitude>-4.6025390042</ps:latitude>
|
||||
<ps:longitude>105.4238725649</ps:longitude>
|
||||
</ps:topRight>
|
||||
<ps:bottomRight>
|
||||
<ps:latitude>-4.8421231813</ps:latitude>
|
||||
<ps:longitude>105.4238725649</ps:longitude>
|
||||
</ps:bottomRight>
|
||||
<ps:bottomLeft>
|
||||
<ps:latitude>-4.8421231813</ps:latitude>
|
||||
<ps:longitude>105.0878255188</ps:longitude>
|
||||
</ps:bottomLeft>
|
||||
</ps:geographicLocation>
|
||||
</ps:Footprint>
|
||||
</gml:target>
|
||||
<gml:resultOf>
|
||||
<ps:EarthObservationResult>
|
||||
<eop:product>
|
||||
<ps:ProductInformation>
|
||||
<eop:fileName>/execdir/20240202_023105_71_24bf_3B_AnalyticMS_8b_clip.tif</eop:fileName>
|
||||
<ps:productFormat>GeoTIFF</ps:productFormat>
|
||||
<ps:spatialReferenceSystem>
|
||||
<ps:epsgCode>32748</ps:epsgCode>
|
||||
<ps:geodeticDatum>WGS_1984</ps:geodeticDatum>
|
||||
<ps:projection>WGS 84 / UTM zone 48S</ps:projection>
|
||||
<ps:projectionZone>148</ps:projectionZone>
|
||||
</ps:spatialReferenceSystem>
|
||||
<ps:resamplingKernel>CC</ps:resamplingKernel>
|
||||
<ps:numRows>977</ps:numRows>
|
||||
<ps:numColumns>1308</ps:numColumns>
|
||||
<ps:numBands>8</ps:numBands>
|
||||
<ps:rowGsd>3.0</ps:rowGsd>
|
||||
<ps:columnGsd>3.0</ps:columnGsd>
|
||||
<ps:radiometricCorrectionApplied>true</ps:radiometricCorrectionApplied>
|
||||
<ps:geoCorrectionLevel>Precision Geocorrection</ps:geoCorrectionLevel>
|
||||
<ps:elevationCorrectionApplied>FineDEM</ps:elevationCorrectionApplied>
|
||||
<ps:atmosphericCorrectionApplied>false</ps:atmosphericCorrectionApplied>
|
||||
</ps:ProductInformation>
|
||||
</eop:product>
|
||||
<eop:mask>
|
||||
<eop:MaskInformation>
|
||||
<eop:type>UNUSABLE DATA</eop:type>
|
||||
<eop:format>RASTER</eop:format>
|
||||
<eop:referenceSystemIdentifier codeSpace="EPSG">32748</eop:referenceSystemIdentifier>
|
||||
<eop:fileName>NA</eop:fileName>
|
||||
</eop:MaskInformation>
|
||||
</eop:mask>
|
||||
<opt:cloudCoverPercentage uom="percentage">3.75</opt:cloudCoverPercentage>
|
||||
<opt:cloudCoverPercentageQuotationMode>AUTOMATIC</opt:cloudCoverPercentageQuotationMode>
|
||||
<ps:unusableDataPercentage uom="percentage">0.0</ps:unusableDataPercentage>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>1</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.1307500191390227e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>2</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.057795263534445e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>3</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.1993079010651003e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>4</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.231838790471867e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>5</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.398702697757051e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>6</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.68632611480465e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>7</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.8718487532751998e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>8</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>4.251778794304195e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
</ps:EarthObservationResult>
|
||||
</gml:resultOf>
|
||||
</ps:EarthObservation>
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,61 @@
|
||||
{
|
||||
"id": "20240202_023105_71_24bf",
|
||||
"type": "Feature",
|
||||
"geometry": {
|
||||
"type": "Polygon",
|
||||
"coordinates": [
|
||||
[
|
||||
[
|
||||
105.24421172,
|
||||
-4.73470122
|
||||
],
|
||||
[
|
||||
105.24421172,
|
||||
-4.708206
|
||||
],
|
||||
[
|
||||
105.27955762,
|
||||
-4.708206
|
||||
],
|
||||
[
|
||||
105.27955762,
|
||||
-4.73470122
|
||||
],
|
||||
[
|
||||
105.24421172,
|
||||
-4.73470122
|
||||
]
|
||||
]
|
||||
]
|
||||
},
|
||||
"properties": {
|
||||
"acquired": "2024-02-02T02:31:05.719134Z",
|
||||
"anomalous_pixels": 0,
|
||||
"clear_confidence_percent": 98,
|
||||
"clear_percent": 100,
|
||||
"cloud_cover": 0.0,
|
||||
"cloud_percent": 0,
|
||||
"ground_control": true,
|
||||
"gsd": 3.8,
|
||||
"heavy_haze_percent": 0,
|
||||
"instrument": "PSB.SD",
|
||||
"item_type": "PSScene",
|
||||
"light_haze_percent": 0,
|
||||
"pixel_resolution": 3,
|
||||
"provider": "planetscope",
|
||||
"published": "2024-02-02T07:14:26Z",
|
||||
"publishing_stage": "finalized",
|
||||
"quality_category": "standard",
|
||||
"satellite_azimuth": 96.9,
|
||||
"satellite_id": "24bf",
|
||||
"shadow_percent": 0,
|
||||
"snow_ice_percent": 0,
|
||||
"strip_id": "7081049",
|
||||
"sun_azimuth": 110.5,
|
||||
"sun_elevation": 48.9,
|
||||
"updated": "2024-02-03T04:30:31Z",
|
||||
"view_angle": 3,
|
||||
"visible_confidence_percent": 98,
|
||||
"visible_percent": 100
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
{
|
||||
"type": "Collection",
|
||||
"id": "3309881f-572a-4432-a3d0-5547a2b357f4: PSScene",
|
||||
"stac_version": "1.0.0",
|
||||
"description": "PSScene",
|
||||
"links": [
|
||||
{
|
||||
"rel": "root",
|
||||
"href": "../catalog.json",
|
||||
"type": "application/json"
|
||||
},
|
||||
{
|
||||
"rel": "item",
|
||||
"href": "./20240202_023105_71_24bf.json",
|
||||
"type": "application/json"
|
||||
},
|
||||
{
|
||||
"rel": "parent",
|
||||
"href": "../catalog.json",
|
||||
"type": "application/json"
|
||||
}
|
||||
],
|
||||
"pl:item_type": "PSScene",
|
||||
"extent": {
|
||||
"spatial": {
|
||||
"bbox": [
|
||||
[
|
||||
105.24421172,
|
||||
-4.73470122,
|
||||
105.27955762,
|
||||
-4.708206
|
||||
]
|
||||
]
|
||||
},
|
||||
"temporal": {
|
||||
"interval": [
|
||||
[
|
||||
"2024-02-02T02:31:05.719134Z",
|
||||
"2024-02-02T02:31:05.719134Z"
|
||||
]
|
||||
]
|
||||
}
|
||||
},
|
||||
"license": "proprietary"
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"type": "Catalog",
|
||||
"id": "3309881f-572a-4432-a3d0-5547a2b357f4",
|
||||
"stac_version": "1.0.0",
|
||||
"description": "8 band-2 Feb 2024",
|
||||
"links": [
|
||||
{
|
||||
"rel": "root",
|
||||
"href": "./catalog.json",
|
||||
"type": "application/json"
|
||||
},
|
||||
{
|
||||
"rel": "child",
|
||||
"href": "./PSScene/PSScene_collection.json",
|
||||
"type": "application/json"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
{"name":"","files":[{"path":"PSScene/20240202_023105_71_24bf_3B_udm2_clip.tif","media_type":"image/tiff","size":119584,"digests":{"md5":"df5802ee2d610f118c756474cee95bce","sha256":"54ae9f9770910e088a6f0c13f438d1c4babcd81992670ada6d3b5eac6e73431e"},"annotations":{"planet/asset_type":"ortho_udm2","planet/bundle_type":"analytic_8b_sr_udm2","planet/item_id":"20240202_023105_71_24bf","planet/item_type":"PSScene"}},{"path":"PSScene/20240202_023105_71_24bf_metadata.json","media_type":"text/plain","size":1656,"digests":{"md5":"9e367cf9e4dc8939bcbf05c44791ca53","sha256":"6af816e57c872e5b3e7f9cca391deb0a530a70eb7f628e03ecb3263064190c0e"},"annotations":{"planet/item_id":"20240202_023105_71_24bf","planet/item_type":"PSScene"}},{"path":"PSScene/20240202_023105_71_24bf_3B_AnalyticMS_8b_metadata_clip.xml","media_type":"text/xml","size":11011,"digests":{"md5":"93d085f270a31fa01971ab73b102ebef","sha256":"8d1343a1e0960e9dee56fd67a71a2df0a74f543dc43bd5dcde6bf37470d2269f"},"annotations":{"planet/asset_type":"ortho_analytic_8b_xml","planet/bundle_type":"analytic_8b_sr_udm2","planet/item_id":"20240202_023105_71_24bf","planet/item_type":"PSScene"}},{"path":"PSScene/PSScene_collection.json","media_type":"application/json","size":860,"digests":{"md5":"dd28b9f483d8adef128898bdace62051","sha256":"f2d252d93cb0b2211acb82e0b3d945111beacc18878d86716760fd742ba8f5a8"},"annotations":{"planet/item_type":"PSScene"}},{"path":"PSScene/20240202_023105_71_24bf.json","media_type":"application/json","size":9550,"digests":{"md5":"755a7d0c271e1281f13b72eb7f11e1d2","sha256":"fa7f98f9426c80a6276bb38087dc195c953ceae927b4375e736e3996924554b5"},"annotations":{"planet/item_id":"20240202_023105_71_24bf","planet/item_type":"PSScene"}},{"path":"catalog.json","media_type":"application/json","size":371,"digests":{"md5":"c201e9dda5de2712c9197118dd99dc84","sha256":"83c884faa96dfca813fc9cb4e1fd5a08b102e4ba3807edadf32c379713b277ae"},"annotations":{}},{"path":"PSScene/20240202_023105_71_24bf_3B_AnalyticMS_SR_8b_clip.tif","media_type":"image/tiff","size":13115284,"digests":{"md5":"fb71263f6e55af19e2b89916de81431d","sha256":"1974c85d049f1a37b53a897691fd6fc8e8ea488cb03f8f13d837e758bd86834b"},"annotations":{"planet/asset_type":"ortho_analytic_8b_sr","planet/bundle_type":"analytic_8b_sr_udm2","planet/item_id":"20240202_023105_71_24bf","planet/item_type":"PSScene"}}]}
|
||||
@@ -0,0 +1,400 @@
|
||||
{
|
||||
"type": "Feature",
|
||||
"stac_version": "1.0.0",
|
||||
"id": "20240505_024049_26_2415",
|
||||
"properties": {
|
||||
"updated": "2024-05-06T10:01:09Z",
|
||||
"created": "2024-05-06T00:19:35Z",
|
||||
"gsd": 3.6,
|
||||
"constellation": "planetscope",
|
||||
"platform": "2415",
|
||||
"instruments": [
|
||||
"PSB.SD"
|
||||
],
|
||||
"eo:cloud_cover": 25,
|
||||
"view:off_nadir": 4.1,
|
||||
"view:azimuth": 278.1,
|
||||
"view:sun_azimuth": 57.2,
|
||||
"view:sun_elevation": 50.4,
|
||||
"pl:ground_control": true,
|
||||
"pl:item_type": "PSScene",
|
||||
"pl:pixel_resolution": 3,
|
||||
"pl:publishing_stage": "finalized",
|
||||
"pl:quality_category": "standard",
|
||||
"pl:strip_id": "7284753",
|
||||
"published": "2024-05-06T00:19:35Z",
|
||||
"datetime": "2024-05-05T02:40:49.260891Z"
|
||||
},
|
||||
"geometry": {
|
||||
"type": "Polygon",
|
||||
"coordinates": [
|
||||
[
|
||||
[
|
||||
105.24421172,
|
||||
-4.73470122
|
||||
],
|
||||
[
|
||||
105.24421172,
|
||||
-4.708206
|
||||
],
|
||||
[
|
||||
105.27955762,
|
||||
-4.708206
|
||||
],
|
||||
[
|
||||
105.27955762,
|
||||
-4.73470122
|
||||
],
|
||||
[
|
||||
105.24421172,
|
||||
-4.73470122
|
||||
]
|
||||
]
|
||||
]
|
||||
},
|
||||
"links": [
|
||||
{
|
||||
"rel": "root",
|
||||
"href": "../catalog.json",
|
||||
"type": "application/json"
|
||||
},
|
||||
{
|
||||
"rel": "collection",
|
||||
"href": "./PSScene_collection.json",
|
||||
"type": "application/json"
|
||||
},
|
||||
{
|
||||
"rel": "parent",
|
||||
"href": "./PSScene_collection.json",
|
||||
"type": "application/json"
|
||||
}
|
||||
],
|
||||
"assets": {
|
||||
"20240505_024049_26_2415_metadata_json": {
|
||||
"href": "./20240505_024049_26_2415_metadata.json",
|
||||
"type": "application/json",
|
||||
"roles": [
|
||||
"metadata"
|
||||
]
|
||||
},
|
||||
"20240505_024049_26_2415_3B_AnalyticMS_8b_metadata_clip_xml": {
|
||||
"href": "./20240505_024049_26_2415_3B_AnalyticMS_8b_metadata_clip.xml",
|
||||
"type": "text/xml",
|
||||
"pl:asset_type": "ortho_analytic_8b_xml",
|
||||
"pl:bundle_type": "analytic_8b_sr_udm2",
|
||||
"roles": [
|
||||
"metadata"
|
||||
]
|
||||
},
|
||||
"20240505_024049_26_2415_3B_AnalyticMS_SR_8b_clip_tif": {
|
||||
"href": "./20240505_024049_26_2415_3B_AnalyticMS_SR_8b_clip.tif",
|
||||
"type": "image/tiff",
|
||||
"pl:asset_type": "ortho_analytic_8b_sr",
|
||||
"pl:bundle_type": "analytic_8b_sr_udm2",
|
||||
"raster:bands": [
|
||||
{
|
||||
"nodata": 0.0,
|
||||
"data_type": "uint16",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 57.0,
|
||||
"maximum": 4371.0
|
||||
},
|
||||
"scale": 0.0001
|
||||
},
|
||||
{
|
||||
"nodata": 0.0,
|
||||
"data_type": "uint16",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 150.0,
|
||||
"maximum": 4871.0
|
||||
},
|
||||
"scale": 0.0001
|
||||
},
|
||||
{
|
||||
"nodata": 0.0,
|
||||
"data_type": "uint16",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 242.0,
|
||||
"maximum": 5155.0
|
||||
},
|
||||
"scale": 0.0001
|
||||
},
|
||||
{
|
||||
"nodata": 0.0,
|
||||
"data_type": "uint16",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 239.0,
|
||||
"maximum": 5073.0
|
||||
},
|
||||
"scale": 0.0001
|
||||
},
|
||||
{
|
||||
"nodata": 0.0,
|
||||
"data_type": "uint16",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 203.0,
|
||||
"maximum": 5092.0
|
||||
},
|
||||
"scale": 0.0001
|
||||
},
|
||||
{
|
||||
"nodata": 0.0,
|
||||
"data_type": "uint16",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 214.0,
|
||||
"maximum": 5625.0
|
||||
},
|
||||
"scale": 0.0001
|
||||
},
|
||||
{
|
||||
"nodata": 0.0,
|
||||
"data_type": "uint16",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 241.0,
|
||||
"maximum": 5312.0
|
||||
},
|
||||
"scale": 0.0001
|
||||
},
|
||||
{
|
||||
"nodata": 0.0,
|
||||
"data_type": "uint16",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 615.0,
|
||||
"maximum": 7165.0
|
||||
},
|
||||
"scale": 0.0001
|
||||
}
|
||||
],
|
||||
"eo:bands": [
|
||||
{
|
||||
"name": "Coastal Blue",
|
||||
"common_name": "coastal",
|
||||
"center_wavelength": 0.442,
|
||||
"full_width_half_max": 0.021
|
||||
},
|
||||
{
|
||||
"name": "Blue",
|
||||
"common_name": "blue",
|
||||
"center_wavelength": 0.49,
|
||||
"full_width_half_max": 0.05
|
||||
},
|
||||
{
|
||||
"name": "Green I",
|
||||
"center_wavelength": 0.531,
|
||||
"full_width_half_max": 0.036
|
||||
},
|
||||
{
|
||||
"name": "Green",
|
||||
"common_name": "green",
|
||||
"center_wavelength": 0.565,
|
||||
"full_width_half_max": 0.036
|
||||
},
|
||||
{
|
||||
"name": "Yellow",
|
||||
"common_name": "yellow",
|
||||
"center_wavelength": 0.61,
|
||||
"full_width_half_max": 0.02
|
||||
},
|
||||
{
|
||||
"name": "Red",
|
||||
"common_name": "red",
|
||||
"center_wavelength": 0.665,
|
||||
"full_width_half_max": 0.03
|
||||
},
|
||||
{
|
||||
"name": "Red Edge",
|
||||
"common_name": "rededge",
|
||||
"center_wavelength": 0.705,
|
||||
"full_width_half_max": 0.016
|
||||
},
|
||||
{
|
||||
"name": "Near-Infrared",
|
||||
"common_name": "nir",
|
||||
"center_wavelength": 0.865,
|
||||
"full_width_half_max": 0.04
|
||||
}
|
||||
],
|
||||
"proj:epsg": 32748,
|
||||
"proj:bbox": [
|
||||
527082.0,
|
||||
9476655.0,
|
||||
531006.0,
|
||||
9479586.0
|
||||
],
|
||||
"proj:shape": [
|
||||
977,
|
||||
1308
|
||||
],
|
||||
"proj:transform": [
|
||||
3.0,
|
||||
0.0,
|
||||
527082.0,
|
||||
0.0,
|
||||
-3.0,
|
||||
9479586.0,
|
||||
0.0,
|
||||
0.0,
|
||||
1.0
|
||||
],
|
||||
"roles": [
|
||||
"data",
|
||||
"reflectance"
|
||||
]
|
||||
},
|
||||
"20240505_024049_26_2415_3B_udm2_clip_tif": {
|
||||
"href": "./20240505_024049_26_2415_3B_udm2_clip.tif",
|
||||
"type": "image/tiff; application=geotiff; profile=cloud-optimized",
|
||||
"pl:asset_type": "ortho_udm2",
|
||||
"pl:bundle_type": "analytic_8b_sr_udm2",
|
||||
"raster:bands": [
|
||||
{
|
||||
"data_type": "uint8",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 0.0,
|
||||
"maximum": 1.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"data_type": "uint8",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 0.0,
|
||||
"maximum": 0.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"data_type": "uint8",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 0.0,
|
||||
"maximum": 0.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"data_type": "uint8",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 0.0,
|
||||
"maximum": 1.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"data_type": "uint8",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 0.0,
|
||||
"maximum": 0.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"data_type": "uint8",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 0.0,
|
||||
"maximum": 1.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"data_type": "uint8",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 0.0,
|
||||
"maximum": 99.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"data_type": "uint8",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 0.0,
|
||||
"maximum": 2.0
|
||||
}
|
||||
}
|
||||
],
|
||||
"eo:bands": [
|
||||
{
|
||||
"name": "B1",
|
||||
"description": "Clear map (0: not clear, 1: clear)"
|
||||
},
|
||||
{
|
||||
"name": "B2",
|
||||
"description": "Snow map (0: no snow or ice, 1: snow or ice)"
|
||||
},
|
||||
{
|
||||
"name": "B3",
|
||||
"description": "Shadow map (0: no shadow, 1: shadow)"
|
||||
},
|
||||
{
|
||||
"name": "B4",
|
||||
"description": "Light haze map (0: no light haze, 1: light haze)"
|
||||
},
|
||||
{
|
||||
"name": "B5",
|
||||
"description": "Heavy haze map (0: no heavy haze, 1: heavy haze)"
|
||||
},
|
||||
{
|
||||
"name": "B6",
|
||||
"description": "Cloud map (0: no cloud, 1: cloud)"
|
||||
},
|
||||
{
|
||||
"name": "B7",
|
||||
"description": "Confidence map (percentage value: per-pixel algorithmic confidence in classification)"
|
||||
},
|
||||
{
|
||||
"name": "B8",
|
||||
"description": "Unusable pixels"
|
||||
}
|
||||
],
|
||||
"proj:epsg": 32748,
|
||||
"proj:bbox": [
|
||||
527082.0,
|
||||
9476655.0,
|
||||
531006.0,
|
||||
9479586.0
|
||||
],
|
||||
"proj:shape": [
|
||||
977,
|
||||
1308
|
||||
],
|
||||
"proj:transform": [
|
||||
3.0,
|
||||
0.0,
|
||||
527082.0,
|
||||
0.0,
|
||||
-3.0,
|
||||
9479586.0,
|
||||
0.0,
|
||||
0.0,
|
||||
1.0
|
||||
],
|
||||
"roles": [
|
||||
"data",
|
||||
"snow-ice",
|
||||
"cloud",
|
||||
"cloud-shadow"
|
||||
]
|
||||
}
|
||||
},
|
||||
"bbox": [
|
||||
105.24421172,
|
||||
-4.73470122,
|
||||
105.27955762,
|
||||
-4.708206
|
||||
],
|
||||
"stac_extensions": [
|
||||
"https://stac-extensions.github.io/eo/v1.0.0/schema.json",
|
||||
"https://stac-extensions.github.io/view/v1.0.0/schema.json",
|
||||
"https://stac-extensions.github.io/raster/v1.1.0/schema.json",
|
||||
"https://stac-extensions.github.io/projection/v1.1.0/schema.json"
|
||||
],
|
||||
"collection": "bf337ff4-248e-4e93-9d65-ec238d6c9077: PSScene"
|
||||
}
|
||||
@@ -0,0 +1,210 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ps:EarthObservation xsi:schemaLocation="http://schemas.planet.com/ps/v1/planet_product_metadata_geocorrected_level http://schemas.planet.com/ps/v1/planet_product_metadata_geocorrected_level.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:opt="http://earth.esa.int/opt" xmlns:gml="http://www.opengis.net/gml" xmlns:eop="http://earth.esa.int/eop" version="1.2.1" planet_standard_product_version="1.0" xmlns:ps="http://schemas.planet.com/ps/v1/planet_product_metadata_geocorrected_level">
|
||||
<gml:metaDataProperty>
|
||||
<ps:EarthObservationMetaData>
|
||||
<eop:identifier>20240505_024049_26_2415_3B_AnalyticMS_8b</eop:identifier>
|
||||
<eop:acquisitionType>NOMINAL</eop:acquisitionType>
|
||||
<eop:productType>L3B</eop:productType>
|
||||
<eop:status>ARCHIVED</eop:status>
|
||||
<eop:downlinkedTo>
|
||||
<eop:DownlinkInformation>
|
||||
<eop:acquisitionStation codeSpace="urn:eop:PS:stationLocation">Planet Ground Station Network</eop:acquisitionStation>
|
||||
<eop:acquisitionDate>2024-05-05T02:40:49+00:00</eop:acquisitionDate>
|
||||
</eop:DownlinkInformation>
|
||||
</eop:downlinkedTo>
|
||||
<eop:archivedIn>
|
||||
<eop:ArchivingInformation>
|
||||
<eop:archivingCenter codeSpace="urn:eop:PS:stationLocation">Planet Archive Center</eop:archivingCenter>
|
||||
<eop:archivingDate>2024-05-05T02:40:49+00:00</eop:archivingDate>
|
||||
<eop:archivingIdentifier codeSpace="urn:eop:PS:dmsCatalogueId">7284753</eop:archivingIdentifier>
|
||||
</eop:ArchivingInformation>
|
||||
</eop:archivedIn>
|
||||
<eop:processing>
|
||||
<eop:ProcessingInformation>
|
||||
<eop:processorName>CMO Processor</eop:processorName>
|
||||
<eop:processorVersion>4.1.4</eop:processorVersion>
|
||||
<eop:nativeProductFormat>GeoTIFF</eop:nativeProductFormat>
|
||||
</eop:ProcessingInformation>
|
||||
</eop:processing>
|
||||
<ps:license>
|
||||
<ps:licenseType>20160101 - Inc - Single User</ps:licenseType>
|
||||
<ps:resourceLink xlink:title="PL EULA" xlink:href="https://assets.planet.com/docs/20160101_Inc_SingleUser.txt" />
|
||||
</ps:license>
|
||||
<ps:versionIsd>1.0</ps:versionIsd>
|
||||
<ps:pixelFormat>16U</ps:pixelFormat>
|
||||
</ps:EarthObservationMetaData>
|
||||
</gml:metaDataProperty>
|
||||
<gml:validTime>
|
||||
<gml:TimePeriod>
|
||||
<gml:beginPosition>2024-05-05T02:40:49+00:00</gml:beginPosition>
|
||||
<gml:endPosition>2024-05-05T02:40:49+00:00</gml:endPosition>
|
||||
</gml:TimePeriod>
|
||||
</gml:validTime>
|
||||
<gml:using>
|
||||
<eop:EarthObservationEquipment>
|
||||
<eop:platform>
|
||||
<eop:Platform>
|
||||
<eop:shortName>PlanetScope</eop:shortName>
|
||||
<eop:serialIdentifier>2415</eop:serialIdentifier>
|
||||
<eop:orbitType>LEO-SSO</eop:orbitType>
|
||||
</eop:Platform>
|
||||
</eop:platform>
|
||||
<eop:instrument>
|
||||
<eop:Instrument>
|
||||
<eop:shortName>PSB.SD</eop:shortName>
|
||||
</eop:Instrument>
|
||||
</eop:instrument>
|
||||
<eop:sensor>
|
||||
<ps:Sensor>
|
||||
<eop:sensorType>OPTICAL</eop:sensorType>
|
||||
<eop:resolution uom="m">3.0000</eop:resolution>
|
||||
<ps:scanType>FRAME</ps:scanType>
|
||||
</ps:Sensor>
|
||||
</eop:sensor>
|
||||
<eop:acquisitionParameters>
|
||||
<ps:Acquisition>
|
||||
<eop:orbitDirection>DESCENDING</eop:orbitDirection>
|
||||
<eop:incidenceAngle uom="deg">4.437593e+00</eop:incidenceAngle>
|
||||
<opt:illuminationAzimuthAngle uom="deg">5.719337e+01</opt:illuminationAzimuthAngle>
|
||||
<opt:illuminationElevationAngle uom="deg">5.039118e+01</opt:illuminationElevationAngle>
|
||||
<ps:azimuthAngle uom="deg">1.110851e+01</ps:azimuthAngle>
|
||||
<ps:spaceCraftViewAngle uom="deg">4.128236e+00</ps:spaceCraftViewAngle>
|
||||
<ps:acquisitionDateTime>2024-05-05T02:40:49+00:00</ps:acquisitionDateTime>
|
||||
</ps:Acquisition>
|
||||
</eop:acquisitionParameters>
|
||||
</eop:EarthObservationEquipment>
|
||||
</gml:using>
|
||||
<gml:target>
|
||||
<ps:Footprint>
|
||||
<gml:multiExtentOf>
|
||||
<gml:MultiSurface srsName="EPSG:4326">
|
||||
<gml:surfaceMembers>
|
||||
<gml:Polygon>
|
||||
<gml:outerBoundaryIs>
|
||||
<gml:LinearRing>
|
||||
<gml:coordinates>105.24421172,-4.73470122 105.24421172,-4.708206 105.27955762,-4.708206 105.27955762,-4.73470122 105.24421172,-4.73470122</gml:coordinates>
|
||||
</gml:LinearRing>
|
||||
</gml:outerBoundaryIs>
|
||||
</gml:Polygon>
|
||||
</gml:surfaceMembers>
|
||||
</gml:MultiSurface>
|
||||
</gml:multiExtentOf>
|
||||
<gml:centerOf>
|
||||
<gml:Point srsName="EPSG:4326">
|
||||
<gml:pos>105.3080654361 -4.7196614710</gml:pos>
|
||||
</gml:Point>
|
||||
</gml:centerOf>
|
||||
<ps:geographicLocation>
|
||||
<ps:topLeft>
|
||||
<ps:latitude>-4.6065291420</ps:latitude>
|
||||
<ps:longitude>105.1486591345</ps:longitude>
|
||||
</ps:topLeft>
|
||||
<ps:topRight>
|
||||
<ps:latitude>-4.6065291420</ps:latitude>
|
||||
<ps:longitude>105.4674146338</ps:longitude>
|
||||
</ps:topRight>
|
||||
<ps:bottomRight>
|
||||
<ps:latitude>-4.8330828303</ps:latitude>
|
||||
<ps:longitude>105.4674146338</ps:longitude>
|
||||
</ps:bottomRight>
|
||||
<ps:bottomLeft>
|
||||
<ps:latitude>-4.8330828303</ps:latitude>
|
||||
<ps:longitude>105.1486591345</ps:longitude>
|
||||
</ps:bottomLeft>
|
||||
</ps:geographicLocation>
|
||||
</ps:Footprint>
|
||||
</gml:target>
|
||||
<gml:resultOf>
|
||||
<ps:EarthObservationResult>
|
||||
<eop:product>
|
||||
<ps:ProductInformation>
|
||||
<eop:fileName>/execdir/20240505_024049_26_2415_3B_AnalyticMS_8b_clip.tif</eop:fileName>
|
||||
<ps:productFormat>GeoTIFF</ps:productFormat>
|
||||
<ps:spatialReferenceSystem>
|
||||
<ps:epsgCode>32748</ps:epsgCode>
|
||||
<ps:geodeticDatum>WGS_1984</ps:geodeticDatum>
|
||||
<ps:projection>WGS 84 / UTM zone 48S</ps:projection>
|
||||
<ps:projectionZone>148</ps:projectionZone>
|
||||
</ps:spatialReferenceSystem>
|
||||
<ps:resamplingKernel>CC</ps:resamplingKernel>
|
||||
<ps:numRows>977</ps:numRows>
|
||||
<ps:numColumns>1308</ps:numColumns>
|
||||
<ps:numBands>8</ps:numBands>
|
||||
<ps:rowGsd>3.0</ps:rowGsd>
|
||||
<ps:columnGsd>3.0</ps:columnGsd>
|
||||
<ps:radiometricCorrectionApplied>true</ps:radiometricCorrectionApplied>
|
||||
<ps:geoCorrectionLevel>Precision Geocorrection</ps:geoCorrectionLevel>
|
||||
<ps:elevationCorrectionApplied>FineDEM</ps:elevationCorrectionApplied>
|
||||
<ps:atmosphericCorrectionApplied>false</ps:atmosphericCorrectionApplied>
|
||||
</ps:ProductInformation>
|
||||
</eop:product>
|
||||
<eop:mask>
|
||||
<eop:MaskInformation>
|
||||
<eop:type>UNUSABLE DATA</eop:type>
|
||||
<eop:format>RASTER</eop:format>
|
||||
<eop:referenceSystemIdentifier codeSpace="EPSG">32748</eop:referenceSystemIdentifier>
|
||||
<eop:fileName>NA</eop:fileName>
|
||||
</eop:MaskInformation>
|
||||
</eop:mask>
|
||||
<opt:cloudCoverPercentage uom="percentage">8.21</opt:cloudCoverPercentage>
|
||||
<opt:cloudCoverPercentageQuotationMode>AUTOMATIC</opt:cloudCoverPercentageQuotationMode>
|
||||
<ps:unusableDataPercentage uom="percentage">0.0</ps:unusableDataPercentage>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>1</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.1830126354745825e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>2</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.108268460009501e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>3</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.2532520916105377e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>4</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.2865808922583464e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>5</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.4575376045597762e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>6</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.752215792068133e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>7</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.9422888932343795e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>8</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>4.356065586219926e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
</ps:EarthObservationResult>
|
||||
</gml:resultOf>
|
||||
</ps:EarthObservation>
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,61 @@
|
||||
{
|
||||
"id": "20240505_024049_26_2415",
|
||||
"type": "Feature",
|
||||
"geometry": {
|
||||
"type": "Polygon",
|
||||
"coordinates": [
|
||||
[
|
||||
[
|
||||
105.24421172,
|
||||
-4.73470122
|
||||
],
|
||||
[
|
||||
105.24421172,
|
||||
-4.708206
|
||||
],
|
||||
[
|
||||
105.27955762,
|
||||
-4.708206
|
||||
],
|
||||
[
|
||||
105.27955762,
|
||||
-4.73470122
|
||||
],
|
||||
[
|
||||
105.24421172,
|
||||
-4.73470122
|
||||
]
|
||||
]
|
||||
]
|
||||
},
|
||||
"properties": {
|
||||
"acquired": "2024-05-05T02:40:49.260891Z",
|
||||
"anomalous_pixels": 0,
|
||||
"clear_confidence_percent": 93,
|
||||
"clear_percent": 63,
|
||||
"cloud_cover": 0.25,
|
||||
"cloud_percent": 25,
|
||||
"ground_control": true,
|
||||
"gsd": 3.6,
|
||||
"heavy_haze_percent": 0,
|
||||
"instrument": "PSB.SD",
|
||||
"item_type": "PSScene",
|
||||
"light_haze_percent": 12,
|
||||
"pixel_resolution": 3,
|
||||
"provider": "planetscope",
|
||||
"published": "2024-05-06T00:19:35Z",
|
||||
"publishing_stage": "finalized",
|
||||
"quality_category": "standard",
|
||||
"satellite_azimuth": 278.1,
|
||||
"satellite_id": "2415",
|
||||
"shadow_percent": 0,
|
||||
"snow_ice_percent": 0,
|
||||
"strip_id": "7284753",
|
||||
"sun_azimuth": 57.2,
|
||||
"sun_elevation": 50.4,
|
||||
"updated": "2024-05-06T10:01:09Z",
|
||||
"view_angle": 4.1,
|
||||
"visible_confidence_percent": 79,
|
||||
"visible_percent": 75
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
{
|
||||
"type": "Collection",
|
||||
"id": "bf337ff4-248e-4e93-9d65-ec238d6c9077: PSScene",
|
||||
"stac_version": "1.0.0",
|
||||
"description": "PSScene",
|
||||
"links": [
|
||||
{
|
||||
"rel": "root",
|
||||
"href": "../catalog.json",
|
||||
"type": "application/json"
|
||||
},
|
||||
{
|
||||
"rel": "item",
|
||||
"href": "./20240505_024049_26_2415.json",
|
||||
"type": "application/json"
|
||||
},
|
||||
{
|
||||
"rel": "parent",
|
||||
"href": "../catalog.json",
|
||||
"type": "application/json"
|
||||
}
|
||||
],
|
||||
"pl:item_type": "PSScene",
|
||||
"extent": {
|
||||
"spatial": {
|
||||
"bbox": [
|
||||
[
|
||||
105.24421172,
|
||||
-4.73470122,
|
||||
105.27955762,
|
||||
-4.708206
|
||||
]
|
||||
]
|
||||
},
|
||||
"temporal": {
|
||||
"interval": [
|
||||
[
|
||||
"2024-05-05T02:40:49.260891Z",
|
||||
"2024-05-05T02:40:49.260891Z"
|
||||
]
|
||||
]
|
||||
}
|
||||
},
|
||||
"license": "proprietary"
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"type": "Catalog",
|
||||
"id": "bf337ff4-248e-4e93-9d65-ec238d6c9077",
|
||||
"stac_version": "1.0.0",
|
||||
"description": "8 band-5 may 2024",
|
||||
"links": [
|
||||
{
|
||||
"rel": "root",
|
||||
"href": "./catalog.json",
|
||||
"type": "application/json"
|
||||
},
|
||||
{
|
||||
"rel": "child",
|
||||
"href": "./PSScene/PSScene_collection.json",
|
||||
"type": "application/json"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
{"name":"","files":[{"path":"PSScene/PSScene_collection.json","media_type":"application/json","size":860,"digests":{"md5":"da07a85325f6003c04ad68c4d3269f43","sha256":"d3f60a35d1c508ac16584baf0f7d874a5df3c8b160b2d11b2c1c2df8e1752068"},"annotations":{"planet/item_type":"PSScene"}},{"path":"catalog.json","media_type":"application/json","size":371,"digests":{"md5":"5354f438a2d517e646c2eed78a03e35e","sha256":"dd430509f6c03cfd80fa4a99459abdd7b8d37e17b1943ecff8c158c32e5b0ed9"},"annotations":{}},{"path":"PSScene/20240505_024049_26_2415.json","media_type":"application/json","size":9553,"digests":{"md5":"7c5a7f32be6b49dd140fc4e2ab832626","sha256":"c016f680269dc1b92d23b045f2dae4bccbc8229b39251d5e39a1213ef699d66b"},"annotations":{"planet/item_id":"20240505_024049_26_2415","planet/item_type":"PSScene"}},{"path":"PSScene/20240505_024049_26_2415_metadata.json","media_type":"text/plain","size":1659,"digests":{"md5":"0b9b76d7e21a6053c4bbb756bed16005","sha256":"c4f8e7463edc14543aab15134873815b6e8929ec01c402e787e57682f262f440"},"annotations":{"planet/item_id":"20240505_024049_26_2415","planet/item_type":"PSScene"}},{"path":"PSScene/20240505_024049_26_2415_3B_udm2_clip.tif","media_type":"image/tiff","size":213058,"digests":{"md5":"9fdd5d5bd767bfd3fc5d522fdafda5b9","sha256":"d0bf7f980b538b2cdd3691ff3674cbf1d5af6eca61abe3e0ba19c549b4d06b37"},"annotations":{"planet/asset_type":"ortho_udm2","planet/bundle_type":"analytic_8b_sr_udm2","planet/item_id":"20240505_024049_26_2415","planet/item_type":"PSScene"}},{"path":"PSScene/20240505_024049_26_2415_3B_AnalyticMS_8b_metadata_clip.xml","media_type":"text/xml","size":11014,"digests":{"md5":"4d871d62201c1c5925e34657b4f57083","sha256":"6b5a238c63a4ebffe656955b1cd9ead15f4b10f9e7c0307746f43ec7d6a686d8"},"annotations":{"planet/asset_type":"ortho_analytic_8b_xml","planet/bundle_type":"analytic_8b_sr_udm2","planet/item_id":"20240505_024049_26_2415","planet/item_type":"PSScene"}},{"path":"PSScene/20240505_024049_26_2415_3B_AnalyticMS_SR_8b_clip.tif","media_type":"image/tiff","size":13127806,"digests":{"md5":"a34d7e7631e59800cf44f39a679533cb","sha256":"fd4e4d70591786627d9641a9f248b44a2d11077d6ff70df1d8c74929a6909545"},"annotations":{"planet/asset_type":"ortho_analytic_8b_sr","planet/bundle_type":"analytic_8b_sr_udm2","planet/item_id":"20240505_024049_26_2415","planet/item_type":"PSScene"}}]}
|
||||
@@ -0,0 +1,400 @@
|
||||
{
|
||||
"type": "Feature",
|
||||
"stac_version": "1.0.0",
|
||||
"id": "20240408_032915_31_24cb",
|
||||
"properties": {
|
||||
"updated": "2024-04-09T04:28:49Z",
|
||||
"created": "2024-04-08T07:37:55Z",
|
||||
"gsd": 3.9,
|
||||
"constellation": "planetscope",
|
||||
"platform": "24cb",
|
||||
"instruments": [
|
||||
"PSB.SD"
|
||||
],
|
||||
"eo:cloud_cover": 10,
|
||||
"view:off_nadir": 2.1,
|
||||
"view:azimuth": 278.5,
|
||||
"view:sun_azimuth": 62.4,
|
||||
"view:sun_elevation": 64,
|
||||
"pl:ground_control": true,
|
||||
"pl:item_type": "PSScene",
|
||||
"pl:pixel_resolution": 3,
|
||||
"pl:publishing_stage": "finalized",
|
||||
"pl:quality_category": "standard",
|
||||
"pl:strip_id": "7228905",
|
||||
"published": "2024-04-08T07:37:55Z",
|
||||
"datetime": "2024-04-08T03:29:15.310578Z"
|
||||
},
|
||||
"geometry": {
|
||||
"type": "Polygon",
|
||||
"coordinates": [
|
||||
[
|
||||
[
|
||||
105.24421172,
|
||||
-4.73470122
|
||||
],
|
||||
[
|
||||
105.24421172,
|
||||
-4.708206
|
||||
],
|
||||
[
|
||||
105.27955762,
|
||||
-4.708206
|
||||
],
|
||||
[
|
||||
105.27955762,
|
||||
-4.73470122
|
||||
],
|
||||
[
|
||||
105.24421172,
|
||||
-4.73470122
|
||||
]
|
||||
]
|
||||
]
|
||||
},
|
||||
"links": [
|
||||
{
|
||||
"rel": "root",
|
||||
"href": "../catalog.json",
|
||||
"type": "application/json"
|
||||
},
|
||||
{
|
||||
"rel": "collection",
|
||||
"href": "./PSScene_collection.json",
|
||||
"type": "application/json"
|
||||
},
|
||||
{
|
||||
"rel": "parent",
|
||||
"href": "./PSScene_collection.json",
|
||||
"type": "application/json"
|
||||
}
|
||||
],
|
||||
"assets": {
|
||||
"20240408_032915_31_24cb_metadata_json": {
|
||||
"href": "./20240408_032915_31_24cb_metadata.json",
|
||||
"type": "application/json",
|
||||
"roles": [
|
||||
"metadata"
|
||||
]
|
||||
},
|
||||
"20240408_032915_31_24cb_3B_AnalyticMS_8b_metadata_clip_xml": {
|
||||
"href": "./20240408_032915_31_24cb_3B_AnalyticMS_8b_metadata_clip.xml",
|
||||
"type": "text/xml",
|
||||
"pl:asset_type": "ortho_analytic_8b_xml",
|
||||
"pl:bundle_type": "analytic_8b_sr_udm2",
|
||||
"roles": [
|
||||
"metadata"
|
||||
]
|
||||
},
|
||||
"20240408_032915_31_24cb_3B_udm2_clip_tif": {
|
||||
"href": "./20240408_032915_31_24cb_3B_udm2_clip.tif",
|
||||
"type": "image/tiff; application=geotiff; profile=cloud-optimized",
|
||||
"pl:asset_type": "ortho_udm2",
|
||||
"pl:bundle_type": "analytic_8b_sr_udm2",
|
||||
"raster:bands": [
|
||||
{
|
||||
"data_type": "uint8",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 0.0,
|
||||
"maximum": 1.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"data_type": "uint8",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 0.0,
|
||||
"maximum": 0.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"data_type": "uint8",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 0.0,
|
||||
"maximum": 1.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"data_type": "uint8",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 0.0,
|
||||
"maximum": 1.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"data_type": "uint8",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 0.0,
|
||||
"maximum": 0.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"data_type": "uint8",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 0.0,
|
||||
"maximum": 1.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"data_type": "uint8",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 0.0,
|
||||
"maximum": 100.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"data_type": "uint8",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 0.0,
|
||||
"maximum": 2.0
|
||||
}
|
||||
}
|
||||
],
|
||||
"eo:bands": [
|
||||
{
|
||||
"name": "B1",
|
||||
"description": "Clear map (0: not clear, 1: clear)"
|
||||
},
|
||||
{
|
||||
"name": "B2",
|
||||
"description": "Snow map (0: no snow or ice, 1: snow or ice)"
|
||||
},
|
||||
{
|
||||
"name": "B3",
|
||||
"description": "Shadow map (0: no shadow, 1: shadow)"
|
||||
},
|
||||
{
|
||||
"name": "B4",
|
||||
"description": "Light haze map (0: no light haze, 1: light haze)"
|
||||
},
|
||||
{
|
||||
"name": "B5",
|
||||
"description": "Heavy haze map (0: no heavy haze, 1: heavy haze)"
|
||||
},
|
||||
{
|
||||
"name": "B6",
|
||||
"description": "Cloud map (0: no cloud, 1: cloud)"
|
||||
},
|
||||
{
|
||||
"name": "B7",
|
||||
"description": "Confidence map (percentage value: per-pixel algorithmic confidence in classification)"
|
||||
},
|
||||
{
|
||||
"name": "B8",
|
||||
"description": "Unusable pixels"
|
||||
}
|
||||
],
|
||||
"proj:epsg": 32748,
|
||||
"proj:bbox": [
|
||||
527082.0,
|
||||
9476655.0,
|
||||
531006.0,
|
||||
9479586.0
|
||||
],
|
||||
"proj:shape": [
|
||||
977,
|
||||
1308
|
||||
],
|
||||
"proj:transform": [
|
||||
3.0,
|
||||
0.0,
|
||||
527082.0,
|
||||
0.0,
|
||||
-3.0,
|
||||
9479586.0,
|
||||
0.0,
|
||||
0.0,
|
||||
1.0
|
||||
],
|
||||
"roles": [
|
||||
"data",
|
||||
"snow-ice",
|
||||
"cloud",
|
||||
"cloud-shadow"
|
||||
]
|
||||
},
|
||||
"20240408_032915_31_24cb_3B_AnalyticMS_SR_8b_clip_tif": {
|
||||
"href": "./20240408_032915_31_24cb_3B_AnalyticMS_SR_8b_clip.tif",
|
||||
"type": "image/tiff",
|
||||
"pl:asset_type": "ortho_analytic_8b_sr",
|
||||
"pl:bundle_type": "analytic_8b_sr_udm2",
|
||||
"raster:bands": [
|
||||
{
|
||||
"nodata": 0.0,
|
||||
"data_type": "uint16",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 1.0,
|
||||
"maximum": 6509.0
|
||||
},
|
||||
"scale": 0.0001
|
||||
},
|
||||
{
|
||||
"nodata": 0.0,
|
||||
"data_type": "uint16",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 31.0,
|
||||
"maximum": 6898.0
|
||||
},
|
||||
"scale": 0.0001
|
||||
},
|
||||
{
|
||||
"nodata": 0.0,
|
||||
"data_type": "uint16",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 68.0,
|
||||
"maximum": 7292.0
|
||||
},
|
||||
"scale": 0.0001
|
||||
},
|
||||
{
|
||||
"nodata": 0.0,
|
||||
"data_type": "uint16",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 67.0,
|
||||
"maximum": 7343.0
|
||||
},
|
||||
"scale": 0.0001
|
||||
},
|
||||
{
|
||||
"nodata": 0.0,
|
||||
"data_type": "uint16",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 25.0,
|
||||
"maximum": 7717.0
|
||||
},
|
||||
"scale": 0.0001
|
||||
},
|
||||
{
|
||||
"nodata": 0.0,
|
||||
"data_type": "uint16",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 69.0,
|
||||
"maximum": 7657.0
|
||||
},
|
||||
"scale": 0.0001
|
||||
},
|
||||
{
|
||||
"nodata": 0.0,
|
||||
"data_type": "uint16",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 1.0,
|
||||
"maximum": 7896.0
|
||||
},
|
||||
"scale": 0.0001
|
||||
},
|
||||
{
|
||||
"nodata": 0.0,
|
||||
"data_type": "uint16",
|
||||
"spatial_resolution": 3.0,
|
||||
"statistics": {
|
||||
"minimum": 387.0,
|
||||
"maximum": 9616.0
|
||||
},
|
||||
"scale": 0.0001
|
||||
}
|
||||
],
|
||||
"eo:bands": [
|
||||
{
|
||||
"name": "Coastal Blue",
|
||||
"common_name": "coastal",
|
||||
"center_wavelength": 0.442,
|
||||
"full_width_half_max": 0.021
|
||||
},
|
||||
{
|
||||
"name": "Blue",
|
||||
"common_name": "blue",
|
||||
"center_wavelength": 0.49,
|
||||
"full_width_half_max": 0.05
|
||||
},
|
||||
{
|
||||
"name": "Green I",
|
||||
"center_wavelength": 0.531,
|
||||
"full_width_half_max": 0.036
|
||||
},
|
||||
{
|
||||
"name": "Green",
|
||||
"common_name": "green",
|
||||
"center_wavelength": 0.565,
|
||||
"full_width_half_max": 0.036
|
||||
},
|
||||
{
|
||||
"name": "Yellow",
|
||||
"common_name": "yellow",
|
||||
"center_wavelength": 0.61,
|
||||
"full_width_half_max": 0.02
|
||||
},
|
||||
{
|
||||
"name": "Red",
|
||||
"common_name": "red",
|
||||
"center_wavelength": 0.665,
|
||||
"full_width_half_max": 0.03
|
||||
},
|
||||
{
|
||||
"name": "Red Edge",
|
||||
"common_name": "rededge",
|
||||
"center_wavelength": 0.705,
|
||||
"full_width_half_max": 0.016
|
||||
},
|
||||
{
|
||||
"name": "Near-Infrared",
|
||||
"common_name": "nir",
|
||||
"center_wavelength": 0.865,
|
||||
"full_width_half_max": 0.04
|
||||
}
|
||||
],
|
||||
"proj:epsg": 32748,
|
||||
"proj:bbox": [
|
||||
527082.0,
|
||||
9476655.0,
|
||||
531006.0,
|
||||
9479586.0
|
||||
],
|
||||
"proj:shape": [
|
||||
977,
|
||||
1308
|
||||
],
|
||||
"proj:transform": [
|
||||
3.0,
|
||||
0.0,
|
||||
527082.0,
|
||||
0.0,
|
||||
-3.0,
|
||||
9479586.0,
|
||||
0.0,
|
||||
0.0,
|
||||
1.0
|
||||
],
|
||||
"roles": [
|
||||
"data",
|
||||
"reflectance"
|
||||
]
|
||||
}
|
||||
},
|
||||
"bbox": [
|
||||
105.24421172,
|
||||
-4.73470122,
|
||||
105.27955762,
|
||||
-4.708206
|
||||
],
|
||||
"stac_extensions": [
|
||||
"https://stac-extensions.github.io/eo/v1.0.0/schema.json",
|
||||
"https://stac-extensions.github.io/view/v1.0.0/schema.json",
|
||||
"https://stac-extensions.github.io/raster/v1.1.0/schema.json",
|
||||
"https://stac-extensions.github.io/projection/v1.1.0/schema.json"
|
||||
],
|
||||
"collection": "607e97fc-3617-45f4-91ee-d4137830da46: PSScene"
|
||||
}
|
||||
@@ -0,0 +1,210 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ps:EarthObservation xsi:schemaLocation="http://schemas.planet.com/ps/v1/planet_product_metadata_geocorrected_level http://schemas.planet.com/ps/v1/planet_product_metadata_geocorrected_level.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:opt="http://earth.esa.int/opt" xmlns:gml="http://www.opengis.net/gml" xmlns:eop="http://earth.esa.int/eop" version="1.2.1" planet_standard_product_version="1.0" xmlns:ps="http://schemas.planet.com/ps/v1/planet_product_metadata_geocorrected_level">
|
||||
<gml:metaDataProperty>
|
||||
<ps:EarthObservationMetaData>
|
||||
<eop:identifier>20240408_032915_31_24cb_3B_AnalyticMS_8b</eop:identifier>
|
||||
<eop:acquisitionType>NOMINAL</eop:acquisitionType>
|
||||
<eop:productType>L3B</eop:productType>
|
||||
<eop:status>ARCHIVED</eop:status>
|
||||
<eop:downlinkedTo>
|
||||
<eop:DownlinkInformation>
|
||||
<eop:acquisitionStation codeSpace="urn:eop:PS:stationLocation">Planet Ground Station Network</eop:acquisitionStation>
|
||||
<eop:acquisitionDate>2024-04-08T03:29:15+00:00</eop:acquisitionDate>
|
||||
</eop:DownlinkInformation>
|
||||
</eop:downlinkedTo>
|
||||
<eop:archivedIn>
|
||||
<eop:ArchivingInformation>
|
||||
<eop:archivingCenter codeSpace="urn:eop:PS:stationLocation">Planet Archive Center</eop:archivingCenter>
|
||||
<eop:archivingDate>2024-04-08T03:29:15+00:00</eop:archivingDate>
|
||||
<eop:archivingIdentifier codeSpace="urn:eop:PS:dmsCatalogueId">7228905</eop:archivingIdentifier>
|
||||
</eop:ArchivingInformation>
|
||||
</eop:archivedIn>
|
||||
<eop:processing>
|
||||
<eop:ProcessingInformation>
|
||||
<eop:processorName>CMO Processor</eop:processorName>
|
||||
<eop:processorVersion>4.1.4</eop:processorVersion>
|
||||
<eop:nativeProductFormat>GeoTIFF</eop:nativeProductFormat>
|
||||
</eop:ProcessingInformation>
|
||||
</eop:processing>
|
||||
<ps:license>
|
||||
<ps:licenseType>20160101 - Inc - Single User</ps:licenseType>
|
||||
<ps:resourceLink xlink:title="PL EULA" xlink:href="https://assets.planet.com/docs/20160101_Inc_SingleUser.txt" />
|
||||
</ps:license>
|
||||
<ps:versionIsd>1.0</ps:versionIsd>
|
||||
<ps:pixelFormat>16U</ps:pixelFormat>
|
||||
</ps:EarthObservationMetaData>
|
||||
</gml:metaDataProperty>
|
||||
<gml:validTime>
|
||||
<gml:TimePeriod>
|
||||
<gml:beginPosition>2024-04-08T03:29:15+00:00</gml:beginPosition>
|
||||
<gml:endPosition>2024-04-08T03:29:15+00:00</gml:endPosition>
|
||||
</gml:TimePeriod>
|
||||
</gml:validTime>
|
||||
<gml:using>
|
||||
<eop:EarthObservationEquipment>
|
||||
<eop:platform>
|
||||
<eop:Platform>
|
||||
<eop:shortName>PlanetScope</eop:shortName>
|
||||
<eop:serialIdentifier>24cb</eop:serialIdentifier>
|
||||
<eop:orbitType>LEO-SSO</eop:orbitType>
|
||||
</eop:Platform>
|
||||
</eop:platform>
|
||||
<eop:instrument>
|
||||
<eop:Instrument>
|
||||
<eop:shortName>PSB.SD</eop:shortName>
|
||||
</eop:Instrument>
|
||||
</eop:instrument>
|
||||
<eop:sensor>
|
||||
<ps:Sensor>
|
||||
<eop:sensorType>OPTICAL</eop:sensorType>
|
||||
<eop:resolution uom="m">3.0000</eop:resolution>
|
||||
<ps:scanType>FRAME</ps:scanType>
|
||||
</ps:Sensor>
|
||||
</eop:sensor>
|
||||
<eop:acquisitionParameters>
|
||||
<ps:Acquisition>
|
||||
<eop:orbitDirection>DESCENDING</eop:orbitDirection>
|
||||
<eop:incidenceAngle uom="deg">2.226576e+00</eop:incidenceAngle>
|
||||
<opt:illuminationAzimuthAngle uom="deg">6.236639e+01</opt:illuminationAzimuthAngle>
|
||||
<opt:illuminationElevationAngle uom="deg">6.401009e+01</opt:illuminationElevationAngle>
|
||||
<ps:azimuthAngle uom="deg">1.118163e+01</ps:azimuthAngle>
|
||||
<ps:spaceCraftViewAngle uom="deg">2.062127e+00</ps:spaceCraftViewAngle>
|
||||
<ps:acquisitionDateTime>2024-04-08T03:29:15+00:00</ps:acquisitionDateTime>
|
||||
</ps:Acquisition>
|
||||
</eop:acquisitionParameters>
|
||||
</eop:EarthObservationEquipment>
|
||||
</gml:using>
|
||||
<gml:target>
|
||||
<ps:Footprint>
|
||||
<gml:multiExtentOf>
|
||||
<gml:MultiSurface srsName="EPSG:4326">
|
||||
<gml:surfaceMembers>
|
||||
<gml:Polygon>
|
||||
<gml:outerBoundaryIs>
|
||||
<gml:LinearRing>
|
||||
<gml:coordinates>105.24421172,-4.73470122 105.24421172,-4.708206 105.27955762,-4.708206 105.27955762,-4.73470122 105.24421172,-4.73470122</gml:coordinates>
|
||||
</gml:LinearRing>
|
||||
</gml:outerBoundaryIs>
|
||||
</gml:Polygon>
|
||||
</gml:surfaceMembers>
|
||||
</gml:MultiSurface>
|
||||
</gml:multiExtentOf>
|
||||
<gml:centerOf>
|
||||
<gml:Point srsName="EPSG:4326">
|
||||
<gml:pos>105.2494749243 -4.7633457425</gml:pos>
|
||||
</gml:Point>
|
||||
</gml:centerOf>
|
||||
<ps:geographicLocation>
|
||||
<ps:topLeft>
|
||||
<ps:latitude>-4.6416088834</ps:latitude>
|
||||
<ps:longitude>105.0784807204</ps:longitude>
|
||||
</ps:topLeft>
|
||||
<ps:topRight>
|
||||
<ps:latitude>-4.6416088834</ps:latitude>
|
||||
<ps:longitude>105.4203999756</ps:longitude>
|
||||
</ps:topRight>
|
||||
<ps:bottomRight>
|
||||
<ps:latitude>-4.8852853016</ps:latitude>
|
||||
<ps:longitude>105.4203999756</ps:longitude>
|
||||
</ps:bottomRight>
|
||||
<ps:bottomLeft>
|
||||
<ps:latitude>-4.8852853016</ps:latitude>
|
||||
<ps:longitude>105.0784807204</ps:longitude>
|
||||
</ps:bottomLeft>
|
||||
</ps:geographicLocation>
|
||||
</ps:Footprint>
|
||||
</gml:target>
|
||||
<gml:resultOf>
|
||||
<ps:EarthObservationResult>
|
||||
<eop:product>
|
||||
<ps:ProductInformation>
|
||||
<eop:fileName>/execdir/20240408_032915_31_24cb_3B_AnalyticMS_8b_clip.tif</eop:fileName>
|
||||
<ps:productFormat>GeoTIFF</ps:productFormat>
|
||||
<ps:spatialReferenceSystem>
|
||||
<ps:epsgCode>32748</ps:epsgCode>
|
||||
<ps:geodeticDatum>WGS_1984</ps:geodeticDatum>
|
||||
<ps:projection>WGS 84 / UTM zone 48S</ps:projection>
|
||||
<ps:projectionZone>148</ps:projectionZone>
|
||||
</ps:spatialReferenceSystem>
|
||||
<ps:resamplingKernel>CC</ps:resamplingKernel>
|
||||
<ps:numRows>977</ps:numRows>
|
||||
<ps:numColumns>1308</ps:numColumns>
|
||||
<ps:numBands>8</ps:numBands>
|
||||
<ps:rowGsd>3.0</ps:rowGsd>
|
||||
<ps:columnGsd>3.0</ps:columnGsd>
|
||||
<ps:radiometricCorrectionApplied>true</ps:radiometricCorrectionApplied>
|
||||
<ps:geoCorrectionLevel>Precision Geocorrection</ps:geoCorrectionLevel>
|
||||
<ps:elevationCorrectionApplied>FineDEM</ps:elevationCorrectionApplied>
|
||||
<ps:atmosphericCorrectionApplied>false</ps:atmosphericCorrectionApplied>
|
||||
</ps:ProductInformation>
|
||||
</eop:product>
|
||||
<eop:mask>
|
||||
<eop:MaskInformation>
|
||||
<eop:type>UNUSABLE DATA</eop:type>
|
||||
<eop:format>RASTER</eop:format>
|
||||
<eop:referenceSystemIdentifier codeSpace="EPSG">32748</eop:referenceSystemIdentifier>
|
||||
<eop:fileName>NA</eop:fileName>
|
||||
</eop:MaskInformation>
|
||||
</eop:mask>
|
||||
<opt:cloudCoverPercentage uom="percentage">11.91</opt:cloudCoverPercentage>
|
||||
<opt:cloudCoverPercentageQuotationMode>AUTOMATIC</opt:cloudCoverPercentageQuotationMode>
|
||||
<ps:unusableDataPercentage uom="percentage">0.0</ps:unusableDataPercentage>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>1</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>1.8435081085793765e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>2</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>1.7803882295187582e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>3</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>1.902823847217183e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>4</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>1.9309693161187422e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>5</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.0753386524305505e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>6</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.3241881640024478e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>7</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.4847008873503035e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>8</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>3.678605473556596e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
</ps:EarthObservationResult>
|
||||
</gml:resultOf>
|
||||
</ps:EarthObservation>
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,61 @@
|
||||
{
|
||||
"id": "20240408_032915_31_24cb",
|
||||
"type": "Feature",
|
||||
"geometry": {
|
||||
"type": "Polygon",
|
||||
"coordinates": [
|
||||
[
|
||||
[
|
||||
105.24421172,
|
||||
-4.73470122
|
||||
],
|
||||
[
|
||||
105.24421172,
|
||||
-4.708206
|
||||
],
|
||||
[
|
||||
105.27955762,
|
||||
-4.708206
|
||||
],
|
||||
[
|
||||
105.27955762,
|
||||
-4.73470122
|
||||
],
|
||||
[
|
||||
105.24421172,
|
||||
-4.73470122
|
||||
]
|
||||
]
|
||||
]
|
||||
},
|
||||
"properties": {
|
||||
"acquired": "2024-04-08T03:29:15.310578Z",
|
||||
"anomalous_pixels": 0,
|
||||
"clear_confidence_percent": 91,
|
||||
"clear_percent": 83,
|
||||
"cloud_cover": 0.1,
|
||||
"cloud_percent": 10,
|
||||
"ground_control": true,
|
||||
"gsd": 3.9,
|
||||
"heavy_haze_percent": 0,
|
||||
"instrument": "PSB.SD",
|
||||
"item_type": "PSScene",
|
||||
"light_haze_percent": 0,
|
||||
"pixel_resolution": 3,
|
||||
"provider": "planetscope",
|
||||
"published": "2024-04-08T07:37:55Z",
|
||||
"publishing_stage": "finalized",
|
||||
"quality_category": "standard",
|
||||
"satellite_azimuth": 278.5,
|
||||
"satellite_id": "24cb",
|
||||
"shadow_percent": 7,
|
||||
"snow_ice_percent": 0,
|
||||
"strip_id": "7228905",
|
||||
"sun_azimuth": 62.4,
|
||||
"sun_elevation": 64,
|
||||
"updated": "2024-04-09T04:28:49Z",
|
||||
"view_angle": 2.1,
|
||||
"visible_confidence_percent": 69,
|
||||
"visible_percent": 90
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
{
|
||||
"type": "Collection",
|
||||
"id": "607e97fc-3617-45f4-91ee-d4137830da46: PSScene",
|
||||
"stac_version": "1.0.0",
|
||||
"description": "PSScene",
|
||||
"links": [
|
||||
{
|
||||
"rel": "root",
|
||||
"href": "../catalog.json",
|
||||
"type": "application/json"
|
||||
},
|
||||
{
|
||||
"rel": "item",
|
||||
"href": "./20240408_032915_31_24cb.json",
|
||||
"type": "application/json"
|
||||
},
|
||||
{
|
||||
"rel": "parent",
|
||||
"href": "../catalog.json",
|
||||
"type": "application/json"
|
||||
}
|
||||
],
|
||||
"pl:item_type": "PSScene",
|
||||
"extent": {
|
||||
"spatial": {
|
||||
"bbox": [
|
||||
[
|
||||
105.24421172,
|
||||
-4.73470122,
|
||||
105.27955762,
|
||||
-4.708206
|
||||
]
|
||||
]
|
||||
},
|
||||
"temporal": {
|
||||
"interval": [
|
||||
[
|
||||
"2024-04-08T03:29:15.310578Z",
|
||||
"2024-04-08T03:29:15.310578Z"
|
||||
]
|
||||
]
|
||||
}
|
||||
},
|
||||
"license": "proprietary"
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"type": "Catalog",
|
||||
"id": "607e97fc-3617-45f4-91ee-d4137830da46",
|
||||
"stac_version": "1.0.0",
|
||||
"description": "8 band - 8 April 2024",
|
||||
"links": [
|
||||
{
|
||||
"rel": "root",
|
||||
"href": "./catalog.json",
|
||||
"type": "application/json"
|
||||
},
|
||||
{
|
||||
"rel": "child",
|
||||
"href": "./PSScene/PSScene_collection.json",
|
||||
"type": "application/json"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
{"name":"","files":[{"path":"PSScene/20240408_032915_31_24cb_3B_udm2_clip.tif","media_type":"image/tiff","size":232378,"digests":{"md5":"2f61e48745c3e643437791c1a34082c6","sha256":"d318bea8ad6b9d4e5c7442a584ae3344061141641a2c6c0c5df11fa2c251e2eb"},"annotations":{"planet/asset_type":"ortho_udm2","planet/bundle_type":"analytic_8b_sr_udm2","planet/item_id":"20240408_032915_31_24cb","planet/item_type":"PSScene"}},{"path":"PSScene/20240408_032915_31_24cb_3B_AnalyticMS_SR_8b_clip.tif","media_type":"image/tiff","size":13870124,"digests":{"md5":"f92f4cc6f04f9bb556bd434d931c5337","sha256":"71b99dabcffbddbc5de72f6dfa7d273a79445867862ef2085a87a1ffa56f9356"},"annotations":{"planet/asset_type":"ortho_analytic_8b_sr","planet/bundle_type":"analytic_8b_sr_udm2","planet/item_id":"20240408_032915_31_24cb","planet/item_type":"PSScene"}},{"path":"PSScene/20240408_032915_31_24cb_3B_AnalyticMS_8b_metadata_clip.xml","media_type":"text/xml","size":11016,"digests":{"md5":"d48b0d8174d4e98cc6f5053e0c12c85d","sha256":"e171033341ee55cccfa214e4ae9daaf06cb45ab78741443967588040e108abdf"},"annotations":{"planet/asset_type":"ortho_analytic_8b_xml","planet/bundle_type":"analytic_8b_sr_udm2","planet/item_id":"20240408_032915_31_24cb","planet/item_type":"PSScene"}},{"path":"PSScene/20240408_032915_31_24cb_metadata.json","media_type":"text/plain","size":1655,"digests":{"md5":"4dec5c732ac80e618e6c4eac0791c7f9","sha256":"8180e7b64765b993a975c59182f7d936910667e1e4645c55732de1946dc271fd"},"annotations":{"planet/item_id":"20240408_032915_31_24cb","planet/item_type":"PSScene"}},{"path":"catalog.json","media_type":"application/json","size":375,"digests":{"md5":"75e5f803758b4e10e2b16672a6dcff6f","sha256":"e408d7192b1aed916d123631baf8ab1705584a8f619e948e25e4d1ca81970854"},"annotations":{}},{"path":"PSScene/PSScene_collection.json","media_type":"application/json","size":860,"digests":{"md5":"96c1d56a72221f6b7f3f5d8b689bb8ea","sha256":"9eecbe655059ade24aa3cfec7dca76f8fa51c1e2316b4e8c7808620c3b5822ad"},"annotations":{"planet/item_type":"PSScene"}},{"path":"PSScene/20240408_032915_31_24cb.json","media_type":"application/json","size":9544,"digests":{"md5":"0907e7748a0bbe262316c3bf45f54eaa","sha256":"3a1fb310ce7a5ce704dd9544c12594a3c04fd2a1e7cbbfd7b0e6cd43785f25f5"},"annotations":{"planet/item_id":"20240408_032915_31_24cb","planet/item_type":"PSScene"}}]}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,210 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ps:EarthObservation xsi:schemaLocation="http://schemas.planet.com/ps/v1/planet_product_metadata_geocorrected_level http://schemas.planet.com/ps/v1/planet_product_metadata_geocorrected_level.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:opt="http://earth.esa.int/opt" xmlns:gml="http://www.opengis.net/gml" xmlns:eop="http://earth.esa.int/eop" version="1.2.1" planet_standard_product_version="1.0" xmlns:ps="http://schemas.planet.com/ps/v1/planet_product_metadata_geocorrected_level">
|
||||
<gml:metaDataProperty>
|
||||
<ps:EarthObservationMetaData>
|
||||
<eop:identifier>20240120_023036_57_24ca_3B_AnalyticMS_8b</eop:identifier>
|
||||
<eop:acquisitionType>NOMINAL</eop:acquisitionType>
|
||||
<eop:productType>L3B</eop:productType>
|
||||
<eop:status>ARCHIVED</eop:status>
|
||||
<eop:downlinkedTo>
|
||||
<eop:DownlinkInformation>
|
||||
<eop:acquisitionStation codeSpace="urn:eop:PS:stationLocation">Planet Ground Station Network</eop:acquisitionStation>
|
||||
<eop:acquisitionDate>2024-01-20T02:30:36+00:00</eop:acquisitionDate>
|
||||
</eop:DownlinkInformation>
|
||||
</eop:downlinkedTo>
|
||||
<eop:archivedIn>
|
||||
<eop:ArchivingInformation>
|
||||
<eop:archivingCenter codeSpace="urn:eop:PS:stationLocation">Planet Archive Center</eop:archivingCenter>
|
||||
<eop:archivingDate>2024-01-20T02:30:36+00:00</eop:archivingDate>
|
||||
<eop:archivingIdentifier codeSpace="urn:eop:PS:dmsCatalogueId">7052556</eop:archivingIdentifier>
|
||||
</eop:ArchivingInformation>
|
||||
</eop:archivedIn>
|
||||
<eop:processing>
|
||||
<eop:ProcessingInformation>
|
||||
<eop:processorName>CMO Processor</eop:processorName>
|
||||
<eop:processorVersion>4.1.4</eop:processorVersion>
|
||||
<eop:nativeProductFormat>GeoTIFF</eop:nativeProductFormat>
|
||||
</eop:ProcessingInformation>
|
||||
</eop:processing>
|
||||
<ps:license>
|
||||
<ps:licenseType>20160101 - Inc - Single User</ps:licenseType>
|
||||
<ps:resourceLink xlink:title="PL EULA" xlink:href="https://assets.planet.com/docs/20160101_Inc_SingleUser.txt" />
|
||||
</ps:license>
|
||||
<ps:versionIsd>1.0</ps:versionIsd>
|
||||
<ps:pixelFormat>16U</ps:pixelFormat>
|
||||
</ps:EarthObservationMetaData>
|
||||
</gml:metaDataProperty>
|
||||
<gml:validTime>
|
||||
<gml:TimePeriod>
|
||||
<gml:beginPosition>2024-01-20T02:30:36+00:00</gml:beginPosition>
|
||||
<gml:endPosition>2024-01-20T02:30:36+00:00</gml:endPosition>
|
||||
</gml:TimePeriod>
|
||||
</gml:validTime>
|
||||
<gml:using>
|
||||
<eop:EarthObservationEquipment>
|
||||
<eop:platform>
|
||||
<eop:Platform>
|
||||
<eop:shortName>PlanetScope</eop:shortName>
|
||||
<eop:serialIdentifier>24ca</eop:serialIdentifier>
|
||||
<eop:orbitType>LEO-SSO</eop:orbitType>
|
||||
</eop:Platform>
|
||||
</eop:platform>
|
||||
<eop:instrument>
|
||||
<eop:Instrument>
|
||||
<eop:shortName>PSB.SD</eop:shortName>
|
||||
</eop:Instrument>
|
||||
</eop:instrument>
|
||||
<eop:sensor>
|
||||
<ps:Sensor>
|
||||
<eop:sensorType>OPTICAL</eop:sensorType>
|
||||
<eop:resolution uom="m">3.0000</eop:resolution>
|
||||
<ps:scanType>FRAME</ps:scanType>
|
||||
</ps:Sensor>
|
||||
</eop:sensor>
|
||||
<eop:acquisitionParameters>
|
||||
<ps:Acquisition>
|
||||
<eop:orbitDirection>DESCENDING</eop:orbitDirection>
|
||||
<eop:incidenceAngle uom="deg">5.266344e+00</eop:incidenceAngle>
|
||||
<opt:illuminationAzimuthAngle uom="deg">1.155685e+02</opt:illuminationAzimuthAngle>
|
||||
<opt:illuminationElevationAngle uom="deg">4.886427e+01</opt:illuminationElevationAngle>
|
||||
<ps:azimuthAngle uom="deg">1.119865e+01</ps:azimuthAngle>
|
||||
<ps:spaceCraftViewAngle uom="deg">4.875402e+00</ps:spaceCraftViewAngle>
|
||||
<ps:acquisitionDateTime>2024-01-20T02:30:36+00:00</ps:acquisitionDateTime>
|
||||
</ps:Acquisition>
|
||||
</eop:acquisitionParameters>
|
||||
</eop:EarthObservationEquipment>
|
||||
</gml:using>
|
||||
<gml:target>
|
||||
<ps:Footprint>
|
||||
<gml:multiExtentOf>
|
||||
<gml:MultiSurface srsName="EPSG:4326">
|
||||
<gml:surfaceMembers>
|
||||
<gml:Polygon>
|
||||
<gml:outerBoundaryIs>
|
||||
<gml:LinearRing>
|
||||
<gml:coordinates>105.244478051427,-4.73470122 105.249723753805,-4.708206 105.27955762,-4.708206 105.27955762,-4.73470122 105.244478051427,-4.73470122</gml:coordinates>
|
||||
</gml:LinearRing>
|
||||
</gml:outerBoundaryIs>
|
||||
</gml:Polygon>
|
||||
</gml:surfaceMembers>
|
||||
</gml:MultiSurface>
|
||||
</gml:multiExtentOf>
|
||||
<gml:centerOf>
|
||||
<gml:Point srsName="EPSG:4326">
|
||||
<gml:pos>105.3977260059 -4.7642740857</gml:pos>
|
||||
</gml:Point>
|
||||
</gml:centerOf>
|
||||
<ps:geographicLocation>
|
||||
<ps:topLeft>
|
||||
<ps:latitude>-4.6421786482</ps:latitude>
|
||||
<ps:longitude>105.2264719864</ps:longitude>
|
||||
</ps:topLeft>
|
||||
<ps:topRight>
|
||||
<ps:latitude>-4.6421786482</ps:latitude>
|
||||
<ps:longitude>105.5691586235</ps:longitude>
|
||||
</ps:topRight>
|
||||
<ps:bottomRight>
|
||||
<ps:latitude>-4.8858480089</ps:latitude>
|
||||
<ps:longitude>105.5691586235</ps:longitude>
|
||||
</ps:bottomRight>
|
||||
<ps:bottomLeft>
|
||||
<ps:latitude>-4.8858480089</ps:latitude>
|
||||
<ps:longitude>105.2264719864</ps:longitude>
|
||||
</ps:bottomLeft>
|
||||
</ps:geographicLocation>
|
||||
</ps:Footprint>
|
||||
</gml:target>
|
||||
<gml:resultOf>
|
||||
<ps:EarthObservationResult>
|
||||
<eop:product>
|
||||
<ps:ProductInformation>
|
||||
<eop:fileName>/execdir/20240120_023036_57_24ca_3B_AnalyticMS_8b_clip.tif</eop:fileName>
|
||||
<ps:productFormat>GeoTIFF</ps:productFormat>
|
||||
<ps:spatialReferenceSystem>
|
||||
<ps:epsgCode>32748</ps:epsgCode>
|
||||
<ps:geodeticDatum>WGS_1984</ps:geodeticDatum>
|
||||
<ps:projection>WGS 84 / UTM zone 48S</ps:projection>
|
||||
<ps:projectionZone>148</ps:projectionZone>
|
||||
</ps:spatialReferenceSystem>
|
||||
<ps:resamplingKernel>CC</ps:resamplingKernel>
|
||||
<ps:numRows>977</ps:numRows>
|
||||
<ps:numColumns>1308</ps:numColumns>
|
||||
<ps:numBands>8</ps:numBands>
|
||||
<ps:rowGsd>3.0</ps:rowGsd>
|
||||
<ps:columnGsd>3.0</ps:columnGsd>
|
||||
<ps:radiometricCorrectionApplied>true</ps:radiometricCorrectionApplied>
|
||||
<ps:geoCorrectionLevel>Precision Geocorrection</ps:geoCorrectionLevel>
|
||||
<ps:elevationCorrectionApplied>FineDEM</ps:elevationCorrectionApplied>
|
||||
<ps:atmosphericCorrectionApplied>false</ps:atmosphericCorrectionApplied>
|
||||
</ps:ProductInformation>
|
||||
</eop:product>
|
||||
<eop:mask>
|
||||
<eop:MaskInformation>
|
||||
<eop:type>UNUSABLE DATA</eop:type>
|
||||
<eop:format>RASTER</eop:format>
|
||||
<eop:referenceSystemIdentifier codeSpace="EPSG">32748</eop:referenceSystemIdentifier>
|
||||
<eop:fileName>NA</eop:fileName>
|
||||
</eop:MaskInformation>
|
||||
</eop:mask>
|
||||
<opt:cloudCoverPercentage uom="percentage">4.03</opt:cloudCoverPercentage>
|
||||
<opt:cloudCoverPercentageQuotationMode>AUTOMATIC</opt:cloudCoverPercentageQuotationMode>
|
||||
<ps:unusableDataPercentage uom="percentage">0.0</ps:unusableDataPercentage>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>1</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.1239679186273907e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>2</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.051245375380372e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>3</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.192307583286351e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>4</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.224734928044657e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>5</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.3910677135272803e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>6</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.6777756356053175e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>7</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.8627077622044662e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>8</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>4.238245535650115e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
</ps:EarthObservationResult>
|
||||
</gml:resultOf>
|
||||
</ps:EarthObservation>
|
||||
@@ -0,0 +1,210 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ps:EarthObservation xsi:schemaLocation="http://schemas.planet.com/ps/v1/planet_product_metadata_geocorrected_level http://schemas.planet.com/ps/v1/planet_product_metadata_geocorrected_level.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:opt="http://earth.esa.int/opt" xmlns:gml="http://www.opengis.net/gml" xmlns:eop="http://earth.esa.int/eop" version="1.2.1" planet_standard_product_version="1.0" xmlns:ps="http://schemas.planet.com/ps/v1/planet_product_metadata_geocorrected_level">
|
||||
<gml:metaDataProperty>
|
||||
<ps:EarthObservationMetaData>
|
||||
<eop:identifier>20240202_023105_71_24bf_3B_AnalyticMS_8b</eop:identifier>
|
||||
<eop:acquisitionType>NOMINAL</eop:acquisitionType>
|
||||
<eop:productType>L3B</eop:productType>
|
||||
<eop:status>ARCHIVED</eop:status>
|
||||
<eop:downlinkedTo>
|
||||
<eop:DownlinkInformation>
|
||||
<eop:acquisitionStation codeSpace="urn:eop:PS:stationLocation">Planet Ground Station Network</eop:acquisitionStation>
|
||||
<eop:acquisitionDate>2024-02-02T02:31:05+00:00</eop:acquisitionDate>
|
||||
</eop:DownlinkInformation>
|
||||
</eop:downlinkedTo>
|
||||
<eop:archivedIn>
|
||||
<eop:ArchivingInformation>
|
||||
<eop:archivingCenter codeSpace="urn:eop:PS:stationLocation">Planet Archive Center</eop:archivingCenter>
|
||||
<eop:archivingDate>2024-02-02T02:31:05+00:00</eop:archivingDate>
|
||||
<eop:archivingIdentifier codeSpace="urn:eop:PS:dmsCatalogueId">7081049</eop:archivingIdentifier>
|
||||
</eop:ArchivingInformation>
|
||||
</eop:archivedIn>
|
||||
<eop:processing>
|
||||
<eop:ProcessingInformation>
|
||||
<eop:processorName>CMO Processor</eop:processorName>
|
||||
<eop:processorVersion>4.1.4</eop:processorVersion>
|
||||
<eop:nativeProductFormat>GeoTIFF</eop:nativeProductFormat>
|
||||
</eop:ProcessingInformation>
|
||||
</eop:processing>
|
||||
<ps:license>
|
||||
<ps:licenseType>20160101 - Inc - Single User</ps:licenseType>
|
||||
<ps:resourceLink xlink:title="PL EULA" xlink:href="https://assets.planet.com/docs/20160101_Inc_SingleUser.txt" />
|
||||
</ps:license>
|
||||
<ps:versionIsd>1.0</ps:versionIsd>
|
||||
<ps:pixelFormat>16U</ps:pixelFormat>
|
||||
</ps:EarthObservationMetaData>
|
||||
</gml:metaDataProperty>
|
||||
<gml:validTime>
|
||||
<gml:TimePeriod>
|
||||
<gml:beginPosition>2024-02-02T02:31:05+00:00</gml:beginPosition>
|
||||
<gml:endPosition>2024-02-02T02:31:05+00:00</gml:endPosition>
|
||||
</gml:TimePeriod>
|
||||
</gml:validTime>
|
||||
<gml:using>
|
||||
<eop:EarthObservationEquipment>
|
||||
<eop:platform>
|
||||
<eop:Platform>
|
||||
<eop:shortName>PlanetScope</eop:shortName>
|
||||
<eop:serialIdentifier>24bf</eop:serialIdentifier>
|
||||
<eop:orbitType>LEO-SSO</eop:orbitType>
|
||||
</eop:Platform>
|
||||
</eop:platform>
|
||||
<eop:instrument>
|
||||
<eop:Instrument>
|
||||
<eop:shortName>PSB.SD</eop:shortName>
|
||||
</eop:Instrument>
|
||||
</eop:instrument>
|
||||
<eop:sensor>
|
||||
<ps:Sensor>
|
||||
<eop:sensorType>OPTICAL</eop:sensorType>
|
||||
<eop:resolution uom="m">3.0000</eop:resolution>
|
||||
<ps:scanType>FRAME</ps:scanType>
|
||||
</ps:Sensor>
|
||||
</eop:sensor>
|
||||
<eop:acquisitionParameters>
|
||||
<ps:Acquisition>
|
||||
<eop:orbitDirection>DESCENDING</eop:orbitDirection>
|
||||
<eop:incidenceAngle uom="deg">3.217626e+00</eop:incidenceAngle>
|
||||
<opt:illuminationAzimuthAngle uom="deg">1.105151e+02</opt:illuminationAzimuthAngle>
|
||||
<opt:illuminationElevationAngle uom="deg">4.885608e+01</opt:illuminationElevationAngle>
|
||||
<ps:azimuthAngle uom="deg">1.117665e+01</ps:azimuthAngle>
|
||||
<ps:spaceCraftViewAngle uom="deg">2.985393e+00</ps:spaceCraftViewAngle>
|
||||
<ps:acquisitionDateTime>2024-02-02T02:31:05+00:00</ps:acquisitionDateTime>
|
||||
</ps:Acquisition>
|
||||
</eop:acquisitionParameters>
|
||||
</eop:EarthObservationEquipment>
|
||||
</gml:using>
|
||||
<gml:target>
|
||||
<ps:Footprint>
|
||||
<gml:multiExtentOf>
|
||||
<gml:MultiSurface srsName="EPSG:4326">
|
||||
<gml:surfaceMembers>
|
||||
<gml:Polygon>
|
||||
<gml:outerBoundaryIs>
|
||||
<gml:LinearRing>
|
||||
<gml:coordinates>105.24421172,-4.73470122 105.24421172,-4.708206 105.27955762,-4.708206 105.27955762,-4.73470122 105.24421172,-4.73470122</gml:coordinates>
|
||||
</gml:LinearRing>
|
||||
</gml:outerBoundaryIs>
|
||||
</gml:Polygon>
|
||||
</gml:surfaceMembers>
|
||||
</gml:MultiSurface>
|
||||
</gml:multiExtentOf>
|
||||
<gml:centerOf>
|
||||
<gml:Point srsName="EPSG:4326">
|
||||
<gml:pos>105.2560120567 -4.7223810076</gml:pos>
|
||||
</gml:Point>
|
||||
</gml:centerOf>
|
||||
<ps:geographicLocation>
|
||||
<ps:topLeft>
|
||||
<ps:latitude>-4.6025390042</ps:latitude>
|
||||
<ps:longitude>105.0878255188</ps:longitude>
|
||||
</ps:topLeft>
|
||||
<ps:topRight>
|
||||
<ps:latitude>-4.6025390042</ps:latitude>
|
||||
<ps:longitude>105.4238725649</ps:longitude>
|
||||
</ps:topRight>
|
||||
<ps:bottomRight>
|
||||
<ps:latitude>-4.8421231813</ps:latitude>
|
||||
<ps:longitude>105.4238725649</ps:longitude>
|
||||
</ps:bottomRight>
|
||||
<ps:bottomLeft>
|
||||
<ps:latitude>-4.8421231813</ps:latitude>
|
||||
<ps:longitude>105.0878255188</ps:longitude>
|
||||
</ps:bottomLeft>
|
||||
</ps:geographicLocation>
|
||||
</ps:Footprint>
|
||||
</gml:target>
|
||||
<gml:resultOf>
|
||||
<ps:EarthObservationResult>
|
||||
<eop:product>
|
||||
<ps:ProductInformation>
|
||||
<eop:fileName>/execdir/20240202_023105_71_24bf_3B_AnalyticMS_8b_clip.tif</eop:fileName>
|
||||
<ps:productFormat>GeoTIFF</ps:productFormat>
|
||||
<ps:spatialReferenceSystem>
|
||||
<ps:epsgCode>32748</ps:epsgCode>
|
||||
<ps:geodeticDatum>WGS_1984</ps:geodeticDatum>
|
||||
<ps:projection>WGS 84 / UTM zone 48S</ps:projection>
|
||||
<ps:projectionZone>148</ps:projectionZone>
|
||||
</ps:spatialReferenceSystem>
|
||||
<ps:resamplingKernel>CC</ps:resamplingKernel>
|
||||
<ps:numRows>977</ps:numRows>
|
||||
<ps:numColumns>1308</ps:numColumns>
|
||||
<ps:numBands>8</ps:numBands>
|
||||
<ps:rowGsd>3.0</ps:rowGsd>
|
||||
<ps:columnGsd>3.0</ps:columnGsd>
|
||||
<ps:radiometricCorrectionApplied>true</ps:radiometricCorrectionApplied>
|
||||
<ps:geoCorrectionLevel>Precision Geocorrection</ps:geoCorrectionLevel>
|
||||
<ps:elevationCorrectionApplied>FineDEM</ps:elevationCorrectionApplied>
|
||||
<ps:atmosphericCorrectionApplied>false</ps:atmosphericCorrectionApplied>
|
||||
</ps:ProductInformation>
|
||||
</eop:product>
|
||||
<eop:mask>
|
||||
<eop:MaskInformation>
|
||||
<eop:type>UNUSABLE DATA</eop:type>
|
||||
<eop:format>RASTER</eop:format>
|
||||
<eop:referenceSystemIdentifier codeSpace="EPSG">32748</eop:referenceSystemIdentifier>
|
||||
<eop:fileName>NA</eop:fileName>
|
||||
</eop:MaskInformation>
|
||||
</eop:mask>
|
||||
<opt:cloudCoverPercentage uom="percentage">3.75</opt:cloudCoverPercentage>
|
||||
<opt:cloudCoverPercentageQuotationMode>AUTOMATIC</opt:cloudCoverPercentageQuotationMode>
|
||||
<ps:unusableDataPercentage uom="percentage">0.0</ps:unusableDataPercentage>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>1</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.1307500191390227e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>2</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.057795263534445e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>3</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.1993079010651003e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>4</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.231838790471867e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>5</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.398702697757051e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>6</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.68632611480465e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>7</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.8718487532751998e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>8</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>4.251778794304195e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
</ps:EarthObservationResult>
|
||||
</gml:resultOf>
|
||||
</ps:EarthObservation>
|
||||
@@ -0,0 +1,210 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ps:EarthObservation xsi:schemaLocation="http://schemas.planet.com/ps/v1/planet_product_metadata_geocorrected_level http://schemas.planet.com/ps/v1/planet_product_metadata_geocorrected_level.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:opt="http://earth.esa.int/opt" xmlns:gml="http://www.opengis.net/gml" xmlns:eop="http://earth.esa.int/eop" version="1.2.1" planet_standard_product_version="1.0" xmlns:ps="http://schemas.planet.com/ps/v1/planet_product_metadata_geocorrected_level">
|
||||
<gml:metaDataProperty>
|
||||
<ps:EarthObservationMetaData>
|
||||
<eop:identifier>20240306_032212_87_247a_3B_AnalyticMS_8b</eop:identifier>
|
||||
<eop:acquisitionType>NOMINAL</eop:acquisitionType>
|
||||
<eop:productType>L3B</eop:productType>
|
||||
<eop:status>ARCHIVED</eop:status>
|
||||
<eop:downlinkedTo>
|
||||
<eop:DownlinkInformation>
|
||||
<eop:acquisitionStation codeSpace="urn:eop:PS:stationLocation">Planet Ground Station Network</eop:acquisitionStation>
|
||||
<eop:acquisitionDate>2024-03-06T03:22:12+00:00</eop:acquisitionDate>
|
||||
</eop:DownlinkInformation>
|
||||
</eop:downlinkedTo>
|
||||
<eop:archivedIn>
|
||||
<eop:ArchivingInformation>
|
||||
<eop:archivingCenter codeSpace="urn:eop:PS:stationLocation">Planet Archive Center</eop:archivingCenter>
|
||||
<eop:archivingDate>2024-03-06T03:22:12+00:00</eop:archivingDate>
|
||||
<eop:archivingIdentifier codeSpace="urn:eop:PS:dmsCatalogueId">7154307</eop:archivingIdentifier>
|
||||
</eop:ArchivingInformation>
|
||||
</eop:archivedIn>
|
||||
<eop:processing>
|
||||
<eop:ProcessingInformation>
|
||||
<eop:processorName>CMO Processor</eop:processorName>
|
||||
<eop:processorVersion>4.1.4</eop:processorVersion>
|
||||
<eop:nativeProductFormat>GeoTIFF</eop:nativeProductFormat>
|
||||
</eop:ProcessingInformation>
|
||||
</eop:processing>
|
||||
<ps:license>
|
||||
<ps:licenseType>20160101 - Inc - Single User</ps:licenseType>
|
||||
<ps:resourceLink xlink:title="PL EULA" xlink:href="https://assets.planet.com/docs/20160101_Inc_SingleUser.txt" />
|
||||
</ps:license>
|
||||
<ps:versionIsd>1.0</ps:versionIsd>
|
||||
<ps:pixelFormat>16U</ps:pixelFormat>
|
||||
</ps:EarthObservationMetaData>
|
||||
</gml:metaDataProperty>
|
||||
<gml:validTime>
|
||||
<gml:TimePeriod>
|
||||
<gml:beginPosition>2024-03-06T03:22:12+00:00</gml:beginPosition>
|
||||
<gml:endPosition>2024-03-06T03:22:12+00:00</gml:endPosition>
|
||||
</gml:TimePeriod>
|
||||
</gml:validTime>
|
||||
<gml:using>
|
||||
<eop:EarthObservationEquipment>
|
||||
<eop:platform>
|
||||
<eop:Platform>
|
||||
<eop:shortName>PlanetScope</eop:shortName>
|
||||
<eop:serialIdentifier>247a</eop:serialIdentifier>
|
||||
<eop:orbitType>LEO-SSO</eop:orbitType>
|
||||
</eop:Platform>
|
||||
</eop:platform>
|
||||
<eop:instrument>
|
||||
<eop:Instrument>
|
||||
<eop:shortName>PSB.SD</eop:shortName>
|
||||
</eop:Instrument>
|
||||
</eop:instrument>
|
||||
<eop:sensor>
|
||||
<ps:Sensor>
|
||||
<eop:sensorType>OPTICAL</eop:sensorType>
|
||||
<eop:resolution uom="m">3.0000</eop:resolution>
|
||||
<ps:scanType>FRAME</ps:scanType>
|
||||
</ps:Sensor>
|
||||
</eop:sensor>
|
||||
<eop:acquisitionParameters>
|
||||
<ps:Acquisition>
|
||||
<eop:orbitDirection>DESCENDING</eop:orbitDirection>
|
||||
<eop:incidenceAngle uom="deg">1.700025e+00</eop:incidenceAngle>
|
||||
<opt:illuminationAzimuthAngle uom="deg">9.284653e+01</opt:illuminationAzimuthAngle>
|
||||
<opt:illuminationElevationAngle uom="deg">6.301244e+01</opt:illuminationElevationAngle>
|
||||
<ps:azimuthAngle uom="deg">1.105504e+01</ps:azimuthAngle>
|
||||
<ps:spaceCraftViewAngle uom="deg">1.586880e+00</ps:spaceCraftViewAngle>
|
||||
<ps:acquisitionDateTime>2024-03-06T03:22:12+00:00</ps:acquisitionDateTime>
|
||||
</ps:Acquisition>
|
||||
</eop:acquisitionParameters>
|
||||
</eop:EarthObservationEquipment>
|
||||
</gml:using>
|
||||
<gml:target>
|
||||
<ps:Footprint>
|
||||
<gml:multiExtentOf>
|
||||
<gml:MultiSurface srsName="EPSG:4326">
|
||||
<gml:surfaceMembers>
|
||||
<gml:Polygon>
|
||||
<gml:outerBoundaryIs>
|
||||
<gml:LinearRing>
|
||||
<gml:coordinates>105.24421172,-4.73470122 105.24421172,-4.708206 105.27955762,-4.708206 105.27955762,-4.73470122 105.24421172,-4.73470122</gml:coordinates>
|
||||
</gml:LinearRing>
|
||||
</gml:outerBoundaryIs>
|
||||
</gml:Polygon>
|
||||
</gml:surfaceMembers>
|
||||
</gml:MultiSurface>
|
||||
</gml:multiExtentOf>
|
||||
<gml:centerOf>
|
||||
<gml:Point srsName="EPSG:4326">
|
||||
<gml:pos>105.2629368114 -4.7442989921</gml:pos>
|
||||
</gml:Point>
|
||||
</gml:centerOf>
|
||||
<ps:geographicLocation>
|
||||
<ps:topLeft>
|
||||
<ps:latitude>-4.6362770836</ps:latitude>
|
||||
<ps:longitude>105.1111936143</ps:longitude>
|
||||
</ps:topLeft>
|
||||
<ps:topRight>
|
||||
<ps:latitude>-4.6362770836</ps:latitude>
|
||||
<ps:longitude>105.4147543790</ps:longitude>
|
||||
</ps:topRight>
|
||||
<ps:bottomRight>
|
||||
<ps:latitude>-4.8523855230</ps:latitude>
|
||||
<ps:longitude>105.4147543790</ps:longitude>
|
||||
</ps:bottomRight>
|
||||
<ps:bottomLeft>
|
||||
<ps:latitude>-4.8523855230</ps:latitude>
|
||||
<ps:longitude>105.1111936143</ps:longitude>
|
||||
</ps:bottomLeft>
|
||||
</ps:geographicLocation>
|
||||
</ps:Footprint>
|
||||
</gml:target>
|
||||
<gml:resultOf>
|
||||
<ps:EarthObservationResult>
|
||||
<eop:product>
|
||||
<ps:ProductInformation>
|
||||
<eop:fileName>/execdir/20240306_032212_87_247a_3B_AnalyticMS_8b_clip.tif</eop:fileName>
|
||||
<ps:productFormat>GeoTIFF</ps:productFormat>
|
||||
<ps:spatialReferenceSystem>
|
||||
<ps:epsgCode>32748</ps:epsgCode>
|
||||
<ps:geodeticDatum>WGS_1984</ps:geodeticDatum>
|
||||
<ps:projection>WGS 84 / UTM zone 48S</ps:projection>
|
||||
<ps:projectionZone>148</ps:projectionZone>
|
||||
</ps:spatialReferenceSystem>
|
||||
<ps:resamplingKernel>CC</ps:resamplingKernel>
|
||||
<ps:numRows>977</ps:numRows>
|
||||
<ps:numColumns>1308</ps:numColumns>
|
||||
<ps:numBands>8</ps:numBands>
|
||||
<ps:rowGsd>3.0</ps:rowGsd>
|
||||
<ps:columnGsd>3.0</ps:columnGsd>
|
||||
<ps:radiometricCorrectionApplied>true</ps:radiometricCorrectionApplied>
|
||||
<ps:geoCorrectionLevel>Precision Geocorrection</ps:geoCorrectionLevel>
|
||||
<ps:elevationCorrectionApplied>FineDEM</ps:elevationCorrectionApplied>
|
||||
<ps:atmosphericCorrectionApplied>false</ps:atmosphericCorrectionApplied>
|
||||
</ps:ProductInformation>
|
||||
</eop:product>
|
||||
<eop:mask>
|
||||
<eop:MaskInformation>
|
||||
<eop:type>UNUSABLE DATA</eop:type>
|
||||
<eop:format>RASTER</eop:format>
|
||||
<eop:referenceSystemIdentifier codeSpace="EPSG">32748</eop:referenceSystemIdentifier>
|
||||
<eop:fileName>NA</eop:fileName>
|
||||
</eop:MaskInformation>
|
||||
</eop:mask>
|
||||
<opt:cloudCoverPercentage uom="percentage">9.76</opt:cloudCoverPercentage>
|
||||
<opt:cloudCoverPercentageQuotationMode>AUTOMATIC</opt:cloudCoverPercentageQuotationMode>
|
||||
<ps:unusableDataPercentage uom="percentage">0.0</ps:unusableDataPercentage>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>1</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>1.8261567568933177e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>2</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>1.7636309708094892e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>3</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>1.8849142076468275e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>4</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>1.9127947675268274e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>5</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.055805279803433e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>6</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.3023125855710307e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>7</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.4613145411061846e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>8</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>3.643981933259218e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
</ps:EarthObservationResult>
|
||||
</gml:resultOf>
|
||||
</ps:EarthObservation>
|
||||
@@ -0,0 +1,210 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ps:EarthObservation xsi:schemaLocation="http://schemas.planet.com/ps/v1/planet_product_metadata_geocorrected_level http://schemas.planet.com/ps/v1/planet_product_metadata_geocorrected_level.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:opt="http://earth.esa.int/opt" xmlns:gml="http://www.opengis.net/gml" xmlns:eop="http://earth.esa.int/eop" version="1.2.1" planet_standard_product_version="1.0" xmlns:ps="http://schemas.planet.com/ps/v1/planet_product_metadata_geocorrected_level">
|
||||
<gml:metaDataProperty>
|
||||
<ps:EarthObservationMetaData>
|
||||
<eop:identifier>20240408_032915_31_24cb_3B_AnalyticMS_8b</eop:identifier>
|
||||
<eop:acquisitionType>NOMINAL</eop:acquisitionType>
|
||||
<eop:productType>L3B</eop:productType>
|
||||
<eop:status>ARCHIVED</eop:status>
|
||||
<eop:downlinkedTo>
|
||||
<eop:DownlinkInformation>
|
||||
<eop:acquisitionStation codeSpace="urn:eop:PS:stationLocation">Planet Ground Station Network</eop:acquisitionStation>
|
||||
<eop:acquisitionDate>2024-04-08T03:29:15+00:00</eop:acquisitionDate>
|
||||
</eop:DownlinkInformation>
|
||||
</eop:downlinkedTo>
|
||||
<eop:archivedIn>
|
||||
<eop:ArchivingInformation>
|
||||
<eop:archivingCenter codeSpace="urn:eop:PS:stationLocation">Planet Archive Center</eop:archivingCenter>
|
||||
<eop:archivingDate>2024-04-08T03:29:15+00:00</eop:archivingDate>
|
||||
<eop:archivingIdentifier codeSpace="urn:eop:PS:dmsCatalogueId">7228905</eop:archivingIdentifier>
|
||||
</eop:ArchivingInformation>
|
||||
</eop:archivedIn>
|
||||
<eop:processing>
|
||||
<eop:ProcessingInformation>
|
||||
<eop:processorName>CMO Processor</eop:processorName>
|
||||
<eop:processorVersion>4.1.4</eop:processorVersion>
|
||||
<eop:nativeProductFormat>GeoTIFF</eop:nativeProductFormat>
|
||||
</eop:ProcessingInformation>
|
||||
</eop:processing>
|
||||
<ps:license>
|
||||
<ps:licenseType>20160101 - Inc - Single User</ps:licenseType>
|
||||
<ps:resourceLink xlink:title="PL EULA" xlink:href="https://assets.planet.com/docs/20160101_Inc_SingleUser.txt" />
|
||||
</ps:license>
|
||||
<ps:versionIsd>1.0</ps:versionIsd>
|
||||
<ps:pixelFormat>16U</ps:pixelFormat>
|
||||
</ps:EarthObservationMetaData>
|
||||
</gml:metaDataProperty>
|
||||
<gml:validTime>
|
||||
<gml:TimePeriod>
|
||||
<gml:beginPosition>2024-04-08T03:29:15+00:00</gml:beginPosition>
|
||||
<gml:endPosition>2024-04-08T03:29:15+00:00</gml:endPosition>
|
||||
</gml:TimePeriod>
|
||||
</gml:validTime>
|
||||
<gml:using>
|
||||
<eop:EarthObservationEquipment>
|
||||
<eop:platform>
|
||||
<eop:Platform>
|
||||
<eop:shortName>PlanetScope</eop:shortName>
|
||||
<eop:serialIdentifier>24cb</eop:serialIdentifier>
|
||||
<eop:orbitType>LEO-SSO</eop:orbitType>
|
||||
</eop:Platform>
|
||||
</eop:platform>
|
||||
<eop:instrument>
|
||||
<eop:Instrument>
|
||||
<eop:shortName>PSB.SD</eop:shortName>
|
||||
</eop:Instrument>
|
||||
</eop:instrument>
|
||||
<eop:sensor>
|
||||
<ps:Sensor>
|
||||
<eop:sensorType>OPTICAL</eop:sensorType>
|
||||
<eop:resolution uom="m">3.0000</eop:resolution>
|
||||
<ps:scanType>FRAME</ps:scanType>
|
||||
</ps:Sensor>
|
||||
</eop:sensor>
|
||||
<eop:acquisitionParameters>
|
||||
<ps:Acquisition>
|
||||
<eop:orbitDirection>DESCENDING</eop:orbitDirection>
|
||||
<eop:incidenceAngle uom="deg">2.226576e+00</eop:incidenceAngle>
|
||||
<opt:illuminationAzimuthAngle uom="deg">6.236639e+01</opt:illuminationAzimuthAngle>
|
||||
<opt:illuminationElevationAngle uom="deg">6.401009e+01</opt:illuminationElevationAngle>
|
||||
<ps:azimuthAngle uom="deg">1.118163e+01</ps:azimuthAngle>
|
||||
<ps:spaceCraftViewAngle uom="deg">2.062127e+00</ps:spaceCraftViewAngle>
|
||||
<ps:acquisitionDateTime>2024-04-08T03:29:15+00:00</ps:acquisitionDateTime>
|
||||
</ps:Acquisition>
|
||||
</eop:acquisitionParameters>
|
||||
</eop:EarthObservationEquipment>
|
||||
</gml:using>
|
||||
<gml:target>
|
||||
<ps:Footprint>
|
||||
<gml:multiExtentOf>
|
||||
<gml:MultiSurface srsName="EPSG:4326">
|
||||
<gml:surfaceMembers>
|
||||
<gml:Polygon>
|
||||
<gml:outerBoundaryIs>
|
||||
<gml:LinearRing>
|
||||
<gml:coordinates>105.24421172,-4.73470122 105.24421172,-4.708206 105.27955762,-4.708206 105.27955762,-4.73470122 105.24421172,-4.73470122</gml:coordinates>
|
||||
</gml:LinearRing>
|
||||
</gml:outerBoundaryIs>
|
||||
</gml:Polygon>
|
||||
</gml:surfaceMembers>
|
||||
</gml:MultiSurface>
|
||||
</gml:multiExtentOf>
|
||||
<gml:centerOf>
|
||||
<gml:Point srsName="EPSG:4326">
|
||||
<gml:pos>105.2494749243 -4.7633457425</gml:pos>
|
||||
</gml:Point>
|
||||
</gml:centerOf>
|
||||
<ps:geographicLocation>
|
||||
<ps:topLeft>
|
||||
<ps:latitude>-4.6416088834</ps:latitude>
|
||||
<ps:longitude>105.0784807204</ps:longitude>
|
||||
</ps:topLeft>
|
||||
<ps:topRight>
|
||||
<ps:latitude>-4.6416088834</ps:latitude>
|
||||
<ps:longitude>105.4203999756</ps:longitude>
|
||||
</ps:topRight>
|
||||
<ps:bottomRight>
|
||||
<ps:latitude>-4.8852853016</ps:latitude>
|
||||
<ps:longitude>105.4203999756</ps:longitude>
|
||||
</ps:bottomRight>
|
||||
<ps:bottomLeft>
|
||||
<ps:latitude>-4.8852853016</ps:latitude>
|
||||
<ps:longitude>105.0784807204</ps:longitude>
|
||||
</ps:bottomLeft>
|
||||
</ps:geographicLocation>
|
||||
</ps:Footprint>
|
||||
</gml:target>
|
||||
<gml:resultOf>
|
||||
<ps:EarthObservationResult>
|
||||
<eop:product>
|
||||
<ps:ProductInformation>
|
||||
<eop:fileName>/execdir/20240408_032915_31_24cb_3B_AnalyticMS_8b_clip.tif</eop:fileName>
|
||||
<ps:productFormat>GeoTIFF</ps:productFormat>
|
||||
<ps:spatialReferenceSystem>
|
||||
<ps:epsgCode>32748</ps:epsgCode>
|
||||
<ps:geodeticDatum>WGS_1984</ps:geodeticDatum>
|
||||
<ps:projection>WGS 84 / UTM zone 48S</ps:projection>
|
||||
<ps:projectionZone>148</ps:projectionZone>
|
||||
</ps:spatialReferenceSystem>
|
||||
<ps:resamplingKernel>CC</ps:resamplingKernel>
|
||||
<ps:numRows>977</ps:numRows>
|
||||
<ps:numColumns>1308</ps:numColumns>
|
||||
<ps:numBands>8</ps:numBands>
|
||||
<ps:rowGsd>3.0</ps:rowGsd>
|
||||
<ps:columnGsd>3.0</ps:columnGsd>
|
||||
<ps:radiometricCorrectionApplied>true</ps:radiometricCorrectionApplied>
|
||||
<ps:geoCorrectionLevel>Precision Geocorrection</ps:geoCorrectionLevel>
|
||||
<ps:elevationCorrectionApplied>FineDEM</ps:elevationCorrectionApplied>
|
||||
<ps:atmosphericCorrectionApplied>false</ps:atmosphericCorrectionApplied>
|
||||
</ps:ProductInformation>
|
||||
</eop:product>
|
||||
<eop:mask>
|
||||
<eop:MaskInformation>
|
||||
<eop:type>UNUSABLE DATA</eop:type>
|
||||
<eop:format>RASTER</eop:format>
|
||||
<eop:referenceSystemIdentifier codeSpace="EPSG">32748</eop:referenceSystemIdentifier>
|
||||
<eop:fileName>NA</eop:fileName>
|
||||
</eop:MaskInformation>
|
||||
</eop:mask>
|
||||
<opt:cloudCoverPercentage uom="percentage">11.91</opt:cloudCoverPercentage>
|
||||
<opt:cloudCoverPercentageQuotationMode>AUTOMATIC</opt:cloudCoverPercentageQuotationMode>
|
||||
<ps:unusableDataPercentage uom="percentage">0.0</ps:unusableDataPercentage>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>1</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>1.8435081085793765e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>2</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>1.7803882295187582e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>3</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>1.902823847217183e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>4</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>1.9309693161187422e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>5</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.0753386524305505e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>6</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.3241881640024478e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>7</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.4847008873503035e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>8</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>3.678605473556596e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
</ps:EarthObservationResult>
|
||||
</gml:resultOf>
|
||||
</ps:EarthObservation>
|
||||
@@ -0,0 +1,210 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ps:EarthObservation xsi:schemaLocation="http://schemas.planet.com/ps/v1/planet_product_metadata_geocorrected_level http://schemas.planet.com/ps/v1/planet_product_metadata_geocorrected_level.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:opt="http://earth.esa.int/opt" xmlns:gml="http://www.opengis.net/gml" xmlns:eop="http://earth.esa.int/eop" version="1.2.1" planet_standard_product_version="1.0" xmlns:ps="http://schemas.planet.com/ps/v1/planet_product_metadata_geocorrected_level">
|
||||
<gml:metaDataProperty>
|
||||
<ps:EarthObservationMetaData>
|
||||
<eop:identifier>20240424_032609_49_24f8_3B_AnalyticMS_8b</eop:identifier>
|
||||
<eop:acquisitionType>NOMINAL</eop:acquisitionType>
|
||||
<eop:productType>L3B</eop:productType>
|
||||
<eop:status>ARCHIVED</eop:status>
|
||||
<eop:downlinkedTo>
|
||||
<eop:DownlinkInformation>
|
||||
<eop:acquisitionStation codeSpace="urn:eop:PS:stationLocation">Planet Ground Station Network</eop:acquisitionStation>
|
||||
<eop:acquisitionDate>2024-04-24T03:26:09+00:00</eop:acquisitionDate>
|
||||
</eop:DownlinkInformation>
|
||||
</eop:downlinkedTo>
|
||||
<eop:archivedIn>
|
||||
<eop:ArchivingInformation>
|
||||
<eop:archivingCenter codeSpace="urn:eop:PS:stationLocation">Planet Archive Center</eop:archivingCenter>
|
||||
<eop:archivingDate>2024-04-24T03:26:09+00:00</eop:archivingDate>
|
||||
<eop:archivingIdentifier codeSpace="urn:eop:PS:dmsCatalogueId">7262351</eop:archivingIdentifier>
|
||||
</eop:ArchivingInformation>
|
||||
</eop:archivedIn>
|
||||
<eop:processing>
|
||||
<eop:ProcessingInformation>
|
||||
<eop:processorName>CMO Processor</eop:processorName>
|
||||
<eop:processorVersion>4.1.4</eop:processorVersion>
|
||||
<eop:nativeProductFormat>GeoTIFF</eop:nativeProductFormat>
|
||||
</eop:ProcessingInformation>
|
||||
</eop:processing>
|
||||
<ps:license>
|
||||
<ps:licenseType>20160101 - Inc - Single User</ps:licenseType>
|
||||
<ps:resourceLink xlink:title="PL EULA" xlink:href="https://assets.planet.com/docs/20160101_Inc_SingleUser.txt" />
|
||||
</ps:license>
|
||||
<ps:versionIsd>1.0</ps:versionIsd>
|
||||
<ps:pixelFormat>16U</ps:pixelFormat>
|
||||
</ps:EarthObservationMetaData>
|
||||
</gml:metaDataProperty>
|
||||
<gml:validTime>
|
||||
<gml:TimePeriod>
|
||||
<gml:beginPosition>2024-04-24T03:26:09+00:00</gml:beginPosition>
|
||||
<gml:endPosition>2024-04-24T03:26:09+00:00</gml:endPosition>
|
||||
</gml:TimePeriod>
|
||||
</gml:validTime>
|
||||
<gml:using>
|
||||
<eop:EarthObservationEquipment>
|
||||
<eop:platform>
|
||||
<eop:Platform>
|
||||
<eop:shortName>PlanetScope</eop:shortName>
|
||||
<eop:serialIdentifier>24f8</eop:serialIdentifier>
|
||||
<eop:orbitType>LEO-SSO</eop:orbitType>
|
||||
</eop:Platform>
|
||||
</eop:platform>
|
||||
<eop:instrument>
|
||||
<eop:Instrument>
|
||||
<eop:shortName>PSB.SD</eop:shortName>
|
||||
</eop:Instrument>
|
||||
</eop:instrument>
|
||||
<eop:sensor>
|
||||
<ps:Sensor>
|
||||
<eop:sensorType>OPTICAL</eop:sensorType>
|
||||
<eop:resolution uom="m">3.0000</eop:resolution>
|
||||
<ps:scanType>FRAME</ps:scanType>
|
||||
</ps:Sensor>
|
||||
</eop:sensor>
|
||||
<eop:acquisitionParameters>
|
||||
<ps:Acquisition>
|
||||
<eop:orbitDirection>DESCENDING</eop:orbitDirection>
|
||||
<eop:incidenceAngle uom="deg">3.571112e+00</eop:incidenceAngle>
|
||||
<opt:illuminationAzimuthAngle uom="deg">5.102354e+01</opt:illuminationAzimuthAngle>
|
||||
<opt:illuminationElevationAngle uom="deg">6.156907e+01</opt:illuminationElevationAngle>
|
||||
<ps:azimuthAngle uom="deg">1.120618e+01</ps:azimuthAngle>
|
||||
<ps:spaceCraftViewAngle uom="deg">3.302948e+00</ps:spaceCraftViewAngle>
|
||||
<ps:acquisitionDateTime>2024-04-24T03:26:09+00:00</ps:acquisitionDateTime>
|
||||
</ps:Acquisition>
|
||||
</eop:acquisitionParameters>
|
||||
</eop:EarthObservationEquipment>
|
||||
</gml:using>
|
||||
<gml:target>
|
||||
<ps:Footprint>
|
||||
<gml:multiExtentOf>
|
||||
<gml:MultiSurface srsName="EPSG:4326">
|
||||
<gml:surfaceMembers>
|
||||
<gml:Polygon>
|
||||
<gml:outerBoundaryIs>
|
||||
<gml:LinearRing>
|
||||
<gml:coordinates>105.24421172,-4.73470122 105.24421172,-4.708206 105.27955762,-4.708206 105.27955762,-4.73470122 105.24421172,-4.73470122</gml:coordinates>
|
||||
</gml:LinearRing>
|
||||
</gml:outerBoundaryIs>
|
||||
</gml:Polygon>
|
||||
</gml:surfaceMembers>
|
||||
</gml:MultiSurface>
|
||||
</gml:multiExtentOf>
|
||||
<gml:centerOf>
|
||||
<gml:Point srsName="EPSG:4326">
|
||||
<gml:pos>105.3916991774 -4.7515209346</gml:pos>
|
||||
</gml:Point>
|
||||
</gml:centerOf>
|
||||
<ps:geographicLocation>
|
||||
<ps:topLeft>
|
||||
<ps:latitude>-4.6278042772</ps:latitude>
|
||||
<ps:longitude>105.2182558385</ps:longitude>
|
||||
</ps:topLeft>
|
||||
<ps:topRight>
|
||||
<ps:latitude>-4.6278042772</ps:latitude>
|
||||
<ps:longitude>105.5651332730</ps:longitude>
|
||||
</ps:topRight>
|
||||
<ps:bottomRight>
|
||||
<ps:latitude>-4.8748821229</ps:latitude>
|
||||
<ps:longitude>105.5651332730</ps:longitude>
|
||||
</ps:bottomRight>
|
||||
<ps:bottomLeft>
|
||||
<ps:latitude>-4.8748821229</ps:latitude>
|
||||
<ps:longitude>105.2182558385</ps:longitude>
|
||||
</ps:bottomLeft>
|
||||
</ps:geographicLocation>
|
||||
</ps:Footprint>
|
||||
</gml:target>
|
||||
<gml:resultOf>
|
||||
<ps:EarthObservationResult>
|
||||
<eop:product>
|
||||
<ps:ProductInformation>
|
||||
<eop:fileName>/execdir/20240424_032609_49_24f8_3B_AnalyticMS_8b_clip.tif</eop:fileName>
|
||||
<ps:productFormat>GeoTIFF</ps:productFormat>
|
||||
<ps:spatialReferenceSystem>
|
||||
<ps:epsgCode>32748</ps:epsgCode>
|
||||
<ps:geodeticDatum>WGS_1984</ps:geodeticDatum>
|
||||
<ps:projection>WGS 84 / UTM zone 48S</ps:projection>
|
||||
<ps:projectionZone>148</ps:projectionZone>
|
||||
</ps:spatialReferenceSystem>
|
||||
<ps:resamplingKernel>CC</ps:resamplingKernel>
|
||||
<ps:numRows>977</ps:numRows>
|
||||
<ps:numColumns>1308</ps:numColumns>
|
||||
<ps:numBands>8</ps:numBands>
|
||||
<ps:rowGsd>3.0</ps:rowGsd>
|
||||
<ps:columnGsd>3.0</ps:columnGsd>
|
||||
<ps:radiometricCorrectionApplied>true</ps:radiometricCorrectionApplied>
|
||||
<ps:geoCorrectionLevel>Precision Geocorrection</ps:geoCorrectionLevel>
|
||||
<ps:elevationCorrectionApplied>FineDEM</ps:elevationCorrectionApplied>
|
||||
<ps:atmosphericCorrectionApplied>false</ps:atmosphericCorrectionApplied>
|
||||
</ps:ProductInformation>
|
||||
</eop:product>
|
||||
<eop:mask>
|
||||
<eop:MaskInformation>
|
||||
<eop:type>UNUSABLE DATA</eop:type>
|
||||
<eop:format>RASTER</eop:format>
|
||||
<eop:referenceSystemIdentifier codeSpace="EPSG">32748</eop:referenceSystemIdentifier>
|
||||
<eop:fileName>NA</eop:fileName>
|
||||
</eop:MaskInformation>
|
||||
</eop:mask>
|
||||
<opt:cloudCoverPercentage uom="percentage">1.11</opt:cloudCoverPercentage>
|
||||
<opt:cloudCoverPercentageQuotationMode>AUTOMATIC</opt:cloudCoverPercentageQuotationMode>
|
||||
<ps:unusableDataPercentage uom="percentage">0.0</ps:unusableDataPercentage>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>1</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>1.9012967837665903e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>2</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>1.8361982781016655e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>3</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>1.9624719001514638e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>4</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>1.9914996485248486e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>5</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.14039454816035e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>6</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.3970447759470552e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>7</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.5625891113555226e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>8</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>3.7939191713179176e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
</ps:EarthObservationResult>
|
||||
</gml:resultOf>
|
||||
</ps:EarthObservation>
|
||||
@@ -0,0 +1,210 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ps:EarthObservation xsi:schemaLocation="http://schemas.planet.com/ps/v1/planet_product_metadata_geocorrected_level http://schemas.planet.com/ps/v1/planet_product_metadata_geocorrected_level.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:opt="http://earth.esa.int/opt" xmlns:gml="http://www.opengis.net/gml" xmlns:eop="http://earth.esa.int/eop" version="1.2.1" planet_standard_product_version="1.0" xmlns:ps="http://schemas.planet.com/ps/v1/planet_product_metadata_geocorrected_level">
|
||||
<gml:metaDataProperty>
|
||||
<ps:EarthObservationMetaData>
|
||||
<eop:identifier>20240505_024049_26_2415_3B_AnalyticMS_8b</eop:identifier>
|
||||
<eop:acquisitionType>NOMINAL</eop:acquisitionType>
|
||||
<eop:productType>L3B</eop:productType>
|
||||
<eop:status>ARCHIVED</eop:status>
|
||||
<eop:downlinkedTo>
|
||||
<eop:DownlinkInformation>
|
||||
<eop:acquisitionStation codeSpace="urn:eop:PS:stationLocation">Planet Ground Station Network</eop:acquisitionStation>
|
||||
<eop:acquisitionDate>2024-05-05T02:40:49+00:00</eop:acquisitionDate>
|
||||
</eop:DownlinkInformation>
|
||||
</eop:downlinkedTo>
|
||||
<eop:archivedIn>
|
||||
<eop:ArchivingInformation>
|
||||
<eop:archivingCenter codeSpace="urn:eop:PS:stationLocation">Planet Archive Center</eop:archivingCenter>
|
||||
<eop:archivingDate>2024-05-05T02:40:49+00:00</eop:archivingDate>
|
||||
<eop:archivingIdentifier codeSpace="urn:eop:PS:dmsCatalogueId">7284753</eop:archivingIdentifier>
|
||||
</eop:ArchivingInformation>
|
||||
</eop:archivedIn>
|
||||
<eop:processing>
|
||||
<eop:ProcessingInformation>
|
||||
<eop:processorName>CMO Processor</eop:processorName>
|
||||
<eop:processorVersion>4.1.4</eop:processorVersion>
|
||||
<eop:nativeProductFormat>GeoTIFF</eop:nativeProductFormat>
|
||||
</eop:ProcessingInformation>
|
||||
</eop:processing>
|
||||
<ps:license>
|
||||
<ps:licenseType>20160101 - Inc - Single User</ps:licenseType>
|
||||
<ps:resourceLink xlink:title="PL EULA" xlink:href="https://assets.planet.com/docs/20160101_Inc_SingleUser.txt" />
|
||||
</ps:license>
|
||||
<ps:versionIsd>1.0</ps:versionIsd>
|
||||
<ps:pixelFormat>16U</ps:pixelFormat>
|
||||
</ps:EarthObservationMetaData>
|
||||
</gml:metaDataProperty>
|
||||
<gml:validTime>
|
||||
<gml:TimePeriod>
|
||||
<gml:beginPosition>2024-05-05T02:40:49+00:00</gml:beginPosition>
|
||||
<gml:endPosition>2024-05-05T02:40:49+00:00</gml:endPosition>
|
||||
</gml:TimePeriod>
|
||||
</gml:validTime>
|
||||
<gml:using>
|
||||
<eop:EarthObservationEquipment>
|
||||
<eop:platform>
|
||||
<eop:Platform>
|
||||
<eop:shortName>PlanetScope</eop:shortName>
|
||||
<eop:serialIdentifier>2415</eop:serialIdentifier>
|
||||
<eop:orbitType>LEO-SSO</eop:orbitType>
|
||||
</eop:Platform>
|
||||
</eop:platform>
|
||||
<eop:instrument>
|
||||
<eop:Instrument>
|
||||
<eop:shortName>PSB.SD</eop:shortName>
|
||||
</eop:Instrument>
|
||||
</eop:instrument>
|
||||
<eop:sensor>
|
||||
<ps:Sensor>
|
||||
<eop:sensorType>OPTICAL</eop:sensorType>
|
||||
<eop:resolution uom="m">3.0000</eop:resolution>
|
||||
<ps:scanType>FRAME</ps:scanType>
|
||||
</ps:Sensor>
|
||||
</eop:sensor>
|
||||
<eop:acquisitionParameters>
|
||||
<ps:Acquisition>
|
||||
<eop:orbitDirection>DESCENDING</eop:orbitDirection>
|
||||
<eop:incidenceAngle uom="deg">4.437593e+00</eop:incidenceAngle>
|
||||
<opt:illuminationAzimuthAngle uom="deg">5.719337e+01</opt:illuminationAzimuthAngle>
|
||||
<opt:illuminationElevationAngle uom="deg">5.039118e+01</opt:illuminationElevationAngle>
|
||||
<ps:azimuthAngle uom="deg">1.110851e+01</ps:azimuthAngle>
|
||||
<ps:spaceCraftViewAngle uom="deg">4.128236e+00</ps:spaceCraftViewAngle>
|
||||
<ps:acquisitionDateTime>2024-05-05T02:40:49+00:00</ps:acquisitionDateTime>
|
||||
</ps:Acquisition>
|
||||
</eop:acquisitionParameters>
|
||||
</eop:EarthObservationEquipment>
|
||||
</gml:using>
|
||||
<gml:target>
|
||||
<ps:Footprint>
|
||||
<gml:multiExtentOf>
|
||||
<gml:MultiSurface srsName="EPSG:4326">
|
||||
<gml:surfaceMembers>
|
||||
<gml:Polygon>
|
||||
<gml:outerBoundaryIs>
|
||||
<gml:LinearRing>
|
||||
<gml:coordinates>105.24421172,-4.73470122 105.24421172,-4.708206 105.27955762,-4.708206 105.27955762,-4.73470122 105.24421172,-4.73470122</gml:coordinates>
|
||||
</gml:LinearRing>
|
||||
</gml:outerBoundaryIs>
|
||||
</gml:Polygon>
|
||||
</gml:surfaceMembers>
|
||||
</gml:MultiSurface>
|
||||
</gml:multiExtentOf>
|
||||
<gml:centerOf>
|
||||
<gml:Point srsName="EPSG:4326">
|
||||
<gml:pos>105.3080654361 -4.7196614710</gml:pos>
|
||||
</gml:Point>
|
||||
</gml:centerOf>
|
||||
<ps:geographicLocation>
|
||||
<ps:topLeft>
|
||||
<ps:latitude>-4.6065291420</ps:latitude>
|
||||
<ps:longitude>105.1486591345</ps:longitude>
|
||||
</ps:topLeft>
|
||||
<ps:topRight>
|
||||
<ps:latitude>-4.6065291420</ps:latitude>
|
||||
<ps:longitude>105.4674146338</ps:longitude>
|
||||
</ps:topRight>
|
||||
<ps:bottomRight>
|
||||
<ps:latitude>-4.8330828303</ps:latitude>
|
||||
<ps:longitude>105.4674146338</ps:longitude>
|
||||
</ps:bottomRight>
|
||||
<ps:bottomLeft>
|
||||
<ps:latitude>-4.8330828303</ps:latitude>
|
||||
<ps:longitude>105.1486591345</ps:longitude>
|
||||
</ps:bottomLeft>
|
||||
</ps:geographicLocation>
|
||||
</ps:Footprint>
|
||||
</gml:target>
|
||||
<gml:resultOf>
|
||||
<ps:EarthObservationResult>
|
||||
<eop:product>
|
||||
<ps:ProductInformation>
|
||||
<eop:fileName>/execdir/20240505_024049_26_2415_3B_AnalyticMS_8b_clip.tif</eop:fileName>
|
||||
<ps:productFormat>GeoTIFF</ps:productFormat>
|
||||
<ps:spatialReferenceSystem>
|
||||
<ps:epsgCode>32748</ps:epsgCode>
|
||||
<ps:geodeticDatum>WGS_1984</ps:geodeticDatum>
|
||||
<ps:projection>WGS 84 / UTM zone 48S</ps:projection>
|
||||
<ps:projectionZone>148</ps:projectionZone>
|
||||
</ps:spatialReferenceSystem>
|
||||
<ps:resamplingKernel>CC</ps:resamplingKernel>
|
||||
<ps:numRows>977</ps:numRows>
|
||||
<ps:numColumns>1308</ps:numColumns>
|
||||
<ps:numBands>8</ps:numBands>
|
||||
<ps:rowGsd>3.0</ps:rowGsd>
|
||||
<ps:columnGsd>3.0</ps:columnGsd>
|
||||
<ps:radiometricCorrectionApplied>true</ps:radiometricCorrectionApplied>
|
||||
<ps:geoCorrectionLevel>Precision Geocorrection</ps:geoCorrectionLevel>
|
||||
<ps:elevationCorrectionApplied>FineDEM</ps:elevationCorrectionApplied>
|
||||
<ps:atmosphericCorrectionApplied>false</ps:atmosphericCorrectionApplied>
|
||||
</ps:ProductInformation>
|
||||
</eop:product>
|
||||
<eop:mask>
|
||||
<eop:MaskInformation>
|
||||
<eop:type>UNUSABLE DATA</eop:type>
|
||||
<eop:format>RASTER</eop:format>
|
||||
<eop:referenceSystemIdentifier codeSpace="EPSG">32748</eop:referenceSystemIdentifier>
|
||||
<eop:fileName>NA</eop:fileName>
|
||||
</eop:MaskInformation>
|
||||
</eop:mask>
|
||||
<opt:cloudCoverPercentage uom="percentage">8.21</opt:cloudCoverPercentage>
|
||||
<opt:cloudCoverPercentageQuotationMode>AUTOMATIC</opt:cloudCoverPercentageQuotationMode>
|
||||
<ps:unusableDataPercentage uom="percentage">0.0</ps:unusableDataPercentage>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>1</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.1830126354745825e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>2</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.108268460009501e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>3</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.2532520916105377e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>4</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.2865808922583464e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>5</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.4575376045597762e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>6</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.752215792068133e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>7</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>2.9422888932343795e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
<ps:bandSpecificMetadata>
|
||||
<ps:bandNumber>8</ps:bandNumber>
|
||||
<!-- Multiply by radiometricScaleFactor to convert DNs to TOA Radiance (watts per steradian per square metre -->
|
||||
<ps:radiometricScaleFactor>0.01</ps:radiometricScaleFactor>
|
||||
<!-- Multiply by reflectanceCoefficient to convert DNs to TOA Reflectance -->
|
||||
<ps:reflectanceCoefficient>4.356065586219926e-05</ps:reflectanceCoefficient>
|
||||
</ps:bandSpecificMetadata>
|
||||
</ps:EarthObservationResult>
|
||||
</gml:resultOf>
|
||||
</ps:EarthObservation>
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user