Skip to content

Commit

Permalink
Using long names for mission write to files
Browse files Browse the repository at this point in the history
  • Loading branch information
tcevaer committed Nov 28, 2023
1 parent 3f54aab commit 49c853d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion coloc_sat/era5_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def mission_name(self):
str
Mission name (ex: SMOS, S1, RS2, RCM, SMAP, HY2, ERA5)
"""
return "ERA5"
return "ECMWF Reanalysis v5"

@property
def wind_name(self):
Expand Down
2 changes: 1 addition & 1 deletion coloc_sat/hy2_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def mission_name(self):
str
Mission name
"""
return 'HY2'
return "Haiyang-2"

@property
def acquisition_type(self):
Expand Down
2 changes: 1 addition & 1 deletion coloc_sat/sar_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def mission_name(self):
if 'RS2' in self.product_name.upper():
return 'RADARSAT-2'
elif 'RCM' in self.product_name.upper():
return 'RCM'
return "RADARSAT Constellation"
elif 'S1A' in self.product_name.upper():
return 'SENTINEL-1 A'
elif 'S1B' in self.product_name.upper():
Expand Down
2 changes: 1 addition & 1 deletion coloc_sat/smap_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def mission_name(self):
str
Mission name (ex: SMOS, S1, RS2, RCM, SMAP, HY2, ERA5)
"""
return "SMAP"
return "Soil Moisture Active Passive"

def rename_vars_in_coloc(self, dataset=None):
"""
Expand Down
2 changes: 1 addition & 1 deletion coloc_sat/smos_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def mission_name(self):
str
Mission name
"""
return 'SMOS'
return "Soil Moisture and Ocean Salinity"

def rename_vars_in_coloc(self, dataset=None):
"""
Expand Down

0 comments on commit 49c853d

Please sign in to comment.