Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

s1_mosaic_fix_1 #589

Open
wants to merge 1 commit into
base: publish
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 3 additions & 7 deletions Data/Datafunctions/data_availability.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,23 +245,19 @@ def general(c):
mosaic = c['summaries']['DataAvailability'][i]['Mosaic']
except Exception:
mosaic = ''
try:
polarization = c['summaries']['DataAvailability'][i]['Polarization']
except Exception:
polarization = ''
try:
S3path = c['summaries']['DataAvailability'][i]['S3 Path']
except Exception:
S3path = ''

if offered_type != '':
t.append([offered_type, status, access, spatial, temporal, available_from, mosaic, polarization, S3path,])
t.append([offered_type, status, access, spatial, temporal, available_from])
note += footnotes
headers = ["Timeliness", "Archive Status", "Access Type", "Spatial Extent", "Temporal Extent", "Available in Ecosystem from", "Mosaic", "Polarization", "S3 Path", ]
else:
t.append([status, access, spatial, temporal, available_from])
t.append([status, access, spatial, temporal, available_from, mosaic, S3path])
note += footnotes
headers = ["Archive Status", "Access Type", "Spatial Extent", "Temporal Extent", "Available in Ecosystem from"]
headers = ["Archive Status", "Access Type", "Spatial Extent", "Temporal Extent", "Available in Ecosystem from", "Mosaic", "S3 Path"]

# Find empty columns and remove them
t,headers=removeempty(t,headers)
Expand Down
2 changes: 0 additions & 2 deletions Data/collections.json
Original file line number Diff line number Diff line change
Expand Up @@ -542,15 +542,13 @@
[
{
"Mosaic": "IW",
"Polarization": "VV + VH",
"Spatial": "Non-polar landmasses, depends on availability of IW products",
"Temporal": "Jan - Dec 2023 *",
"S3 Path": "e.g., /eodata/Global-mosaics/Sentinel-1/S1SAR_L3_IW_MCM/2023/01/01",
"Note": "More mosaics coming soon."
},
{
"Mosaic": "DH",
"Polarization": "HH + HV",
"Spatial": "Polar regions, depends on availability of HH + HV polarised products",
"Temporal": "Jan - Dec 2023 *",
"S3 Path": "e.g., /eodata/Global-mosaics/Sentinel-1/S1SAR_L3_DH_MCM/2023/01/01"
Expand Down