Skip to content

Commit

Permalink
Merge pull request #244 from ZPYin/dev
Browse files Browse the repository at this point in the history
Bugfixes of wrong assiged aerosol backscatter in in-complete overlap zone
  • Loading branch information
HolgerPollyNet authored Jan 9, 2024
2 parents b4f0cb3 + 3176a27 commit 76bfc79
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ todo_filelist
test
netcdf4
log
analysis
done_filelist

# Sphinx build
Expand Down
12 changes: 6 additions & 6 deletions lib/interface/picassoProcV3.m
Original file line number Diff line number Diff line change
Expand Up @@ -3327,7 +3327,7 @@

% optical thickness (OT)
aExt355 = aerExt355_klett(iGrp, :);
aExt355(1:hIndBase) = aerExt355_klett(hIndBase);
aExt355(1:hIndBase) = aerExt355_klett(iGrp, hIndBase);
aBsc355 = aerBsc355_klett(iGrp, :);
aOT355 = nancumsum(aExt355 .* [data.distance0(1), diff(data.distance0)]);
mOT355 = nancumsum(mExt355 .* [data.distance0(1), diff(data.distance0)]);
Expand Down Expand Up @@ -3366,7 +3366,7 @@

% optical thickness (OT)
aExt532 = aerExt532_klett(iGrp, :);
aExt532(1:hIndBase) = aerExt532_klett(hIndBase);
aExt532(1:hIndBase) = aerExt532_klett(iGrp, hIndBase);
aBsc532 = aerBsc532_klett(iGrp, :);
aOT532 = nancumsum(aExt532 .* [data.distance0(1), diff(data.distance0)]);
mOT532 = nancumsum(mExt532 .* [data.distance0(1), diff(data.distance0)]);
Expand Down Expand Up @@ -3405,7 +3405,7 @@

% optical thickness (OT)
aExt1064 = aerExt1064_klett(iGrp, :);
aExt1064(1:hIndBase) = aerExt1064_klett(hIndBase);
aExt1064(1:hIndBase) = aerExt1064_klett(iGrp, hIndBase);
aBsc1064 = aerBsc1064_klett(iGrp, :);
aOT1064 = nancumsum(aExt1064 .* [data.distance0(1), diff(data.distance0)]);
mOT1064 = nancumsum(mExt1064 .* [data.distance0(1), diff(data.distance0)]);
Expand Down Expand Up @@ -3632,7 +3632,7 @@

% optical thickness (OT)
aExt355 = aerExt355_aeronet(iGrp, :);
aExt355(1:hIndBase) = aerExt355_aeronet(hIndBase);
aExt355(1:hIndBase) = aerExt355_aeronet(iGrp, hIndBase);
aBsc355 = aerBsc355_aeronet(iGrp, :);
aOT355 = nancumsum(aExt355 .* [data.distance0(1), diff(data.distance0)]);
mOT355 = nancumsum(mExt355 .* [data.distance0(1), diff(data.distance0)]);
Expand Down Expand Up @@ -3671,7 +3671,7 @@

% optical thickness (OT)
aExt532 = aerExt532_aeronet(iGrp, :);
aExt532(1:hIndBase) = aerExt532_aeronet(hIndBase);
aExt532(1:hIndBase) = aerExt532_aeronet(iGrp, hIndBase);
aBsc532 = aerBsc532_aeronet(iGrp, :);
aOT532 = nancumsum(aExt532 .* [data.distance0(1), diff(data.distance0)]);
mOT532 = nancumsum(mExt532 .* [data.distance0(1), diff(data.distance0)]);
Expand Down Expand Up @@ -3710,7 +3710,7 @@

% optical thickness (OT)
aExt1064 = aerExt1064_aeronet(iGrp, :);
aExt1064(1:hIndBase) = aerExt1064_aeronet(hIndBase);
aExt1064(1:hIndBase) = aerExt1064_aeronet(iGrp, hIndBase);
aBsc1064 = aerBsc1064_aeronet(iGrp, :);
aOT1064 = nancumsum(aExt1064 .* [data.distance0(1), diff(data.distance0)]);
mOT1064 = nancumsum(mExt1064 .* [data.distance0(1), diff(data.distance0)]);
Expand Down

0 comments on commit 76bfc79

Please sign in to comment.