Skip to content

Commit

Permalink
add proxyzaerosol and proxyzdust variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Jurgen Griesfeller committed Jan 12, 2024
1 parent 3e85cf2 commit 3028d7a
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
20 changes: 20 additions & 0 deletions pyaerocom/data/variables.ini
Original file line number Diff line number Diff line change
Expand Up @@ -519,6 +519,16 @@ scat_ylim = [0.0, 5000.0]
scat_loglog = True
scat_scale_factor = 1000.0

[proxyzdust]
description = Atmospheric dust layer height
unit = m
minimum = 0.0
maximum = 1.E4
scat_xlim = [0.0, 5000.0]
scat_ylim = [0.0, 5000.0]
scat_loglog = True
scat_scale_factor = 1000.0

[zaerosol]
description = Atmospheric aerosol layer height
unit = m
Expand All @@ -529,6 +539,16 @@ scat_ylim = [0.0, 5000.0]
scat_loglog = True
scat_scale_factor = 1000.0

[proxyzaerosol]
description = Atmospheric aerosol layer height
unit = m
minimum = 0.0
maximum = 1.E4
scat_xlim = [0.0, 5000.0]
scat_ylim = [0.0, 5000.0]
scat_loglog = True
scat_scale_factor = 1000.0

[z]
description = Altitude above sea level in m
standard_name = altitude
Expand Down
4 changes: 4 additions & 0 deletions pyaerocom/io/read_aeronet_sunv3.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,8 @@ class ReadAeronetSunV3(ReadAeronetBase):
"proxyod550so4": ["od440aer", "od500aer", "ang4487aer"],
"proxyod550ss": ["od440aer", "od500aer", "ang4487aer"],
"proxyod550no3": ["od440aer", "od500aer", "ang4487aer"],
"proxyzaerosol": ["od440aer", "od500aer", "ang4487aer"],
"proxyzdust": ["od440aer", "od500aer", "ang4487aer"],
}

#: Functions that are used to compute additional variables (i.e. one
Expand All @@ -116,6 +118,8 @@ class ReadAeronetSunV3(ReadAeronetBase):
"proxyod550so4": calc_od550aer,
"proxyod550ss": calc_od550aer,
"proxyod550no3": calc_od550aer,
"proxyzaerosol": calc_od550aer,
"proxyzdust": calc_od550aer,
}

#: List of variables that are provided by this dataset (will be extended
Expand Down

0 comments on commit 3028d7a

Please sign in to comment.