Skip to content

Commit 7598423

Browse files
Merge pull request #130 from GEOS-ESM/feature/acollow/bscunits
Feature/acollow/bscunits
2 parents 1a69921 + 0f9a1ab commit 7598423

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Fixed
1111
- update hsrl.py to use py3 integer divide. fixes date parsing.
12+
- units for backscatter coeffiecient to km-1 sr-1 in output files generated with aop.py
1213

1314
### Added
1415
- add optional explicit bin ordering to aop.py yaml. this allows for calculating AOP's for a single bin, or subset of bins

src/pyobs/aop.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ def getAOPext(self,Species=None,wavelength=None,fixrh=None,doaback=True):
585585
# ----------
586586
A = dict (EXT = {'long_name':'Aerosol Extinction Coefficient', 'units':'km-1'},
587587
SCA = {'long_name':'Aerosol Scattering Coefficient', 'units':'km-1'},
588-
BSC = {'long_name':'Aerosol Backscatter Coefficient', 'units':'km-1'},
588+
BSC = {'long_name':'Aerosol Backscatter Coefficient', 'units':'km-1 sr-1'},
589589
DEPOL = {'long_name':'Depolarization Ratio', 'units':'1'}
590590
)
591591
if doaback:

0 commit comments

Comments
 (0)