-
Notifications
You must be signed in to change notification settings - Fork 10
Commit 55253f7
bringing bug fixes to dev (#153)
* Homogenization of variable names for OC (overlap corected) and NR (near-range) files (#133)
* Added near-range SNR to pollySaveNRAttnBeta plus older commits (#125)
* Bugfixes: add Klett Bsc NR
Insert the metadata of Klett Bsc NR figure to the done_filelist.
close #116
* Bugfixes: show nr Klett profiles
Fix bugs associated with missing near-field profiles with Klett method. Update the version `3.2` to identify this change.
Close #116
* Andi branch 01 (#121)
* added database param -AutoCommit- and value -off- in var. conn and commited out set(conn,...)-function
* added database param -AutoCommit- and value -off- in var. conn and commited out set(conn,...)-function continued
* added matlab-version check to correctly set database connection parameters
* added variable tilt_angle
* replaced function split with function strsplit to get the release-version
Co-authored-by: ulysses78 <andiklamt78@yahoo.de>
* Added near-range SNR
* incorporated requested chagens from pull reqeust
Co-authored-by: Zhenping <zp.yin@whu.edu.cn>
Co-authored-by: Holger Baars <55800803+HolgerPollyNet@users.noreply.github.com>
Co-authored-by: ulysses78 <andiklamt78@yahoo.de>
* Added near-range quality mask (#128)
* Added near-range quality mask
* Added near range quality mask
* Added near range quality mask
* Dev (#129)
* Added near-range quality mask
* Added near range quality mask
* Added near range quality mask
* Changed file name to default name
Co-authored-by: griesche <48522799+griesche@users.noreply.github.com>
Co-authored-by: Holger Baars <55800803+HolgerPollyNet@users.noreply.github.com>
Co-authored-by: ulysses78 <andiklamt78@yahoo.de>
* Bugfixes: (quasi) angstroem plot
Bug Description
---------------
No plots of quasi-angstroem exponent after moving to Picasso v3.x.
Bug Analysis
------------
Wrong implementation of channel existence check for 1064 total.
``` matlab
flag1064 = data.flagFarRangeChannel & data.flag1064nmChannel & data.flagCrossChannel; % before
```
Bug Fixes
---------
Fix channel existence check, as below:
``` matlab
flag1064 = data.flagFarRangeChannel & data.flag1064nmChannel & data.flagTotalChannel;
```
close #134
* Bugfixes: replace empty/invalid gdas1 data
Replace invalid/empty GDAS1 profiles with profiles from standard atmosphere.
Close #135
* Bugfixes: correct meteor filter
Check for invalid meteorological data in last [commit](3f02c5b) is wrong, as `~ any(isnan(alt))` condition check would filter meteorological profile containing any NaN height level. The idea for this check is to detect profile which is empty, all NaNs or only one unique height level. Therefore, this check was corrected as below,
``` matlab
% previous
isempty(alt) || (~ any(isnan(alt))) || (length(unique(alt)) < 2)
% now
isempty(alt) || (~ all(isnan(alt))) || (length(unique(alt)) < 2)
```
associated with #135
* bug fixed of new meteor filter, ~ was wrong
* changed pollyxt_names from uppercase to lowercase (#144)
* Added near-range SNR to pollySaveNRAttnBeta plus older commits (#125)
* Bugfixes: add Klett Bsc NR
Insert the metadata of Klett Bsc NR figure to the done_filelist.
close #116
* Bugfixes: show nr Klett profiles
Fix bugs associated with missing near-field profiles with Klett method. Update the version `3.2` to identify this change.
Close #116
* Andi branch 01 (#121)
* added database param -AutoCommit- and value -off- in var. conn and commited out set(conn,...)-function
* added database param -AutoCommit- and value -off- in var. conn and commited out set(conn,...)-function continued
* added matlab-version check to correctly set database connection parameters
* added variable tilt_angle
* replaced function split with function strsplit to get the release-version
Co-authored-by: ulysses78 <andiklamt78@yahoo.de>
* Added near-range SNR
* incorporated requested chagens from pull reqeust
Co-authored-by: Zhenping <zp.yin@whu.edu.cn>
Co-authored-by: Holger Baars <55800803+HolgerPollyNet@users.noreply.github.com>
Co-authored-by: ulysses78 <andiklamt78@yahoo.de>
* Added near-range quality mask (#128)
* Added near-range quality mask
* Added near range quality mask
* Added near range quality mask
* Dev (#129)
* Added near-range quality mask
* Added near range quality mask
* Added near range quality mask
* Changed file name to default name
* Implementation of 1064 depol for pollyxt_cpv (#139)
* Homogenization of variable names for OC (overlap corected) and NR (near-range) files (#133)
* Added near-range SNR to pollySaveNRAttnBeta plus older commits (#125)
* Bugfixes: add Klett Bsc NR
Insert the metadata of Klett Bsc NR figure to the done_filelist.
close #116
* Bugfixes: show nr Klett profiles
Fix bugs associated with missing near-field profiles with Klett method. Update the version `3.2` to identify this change.
Close #116
* Andi branch 01 (#121)
* added database param -AutoCommit- and value -off- in var. conn and commited out set(conn,...)-function
* added database param -AutoCommit- and value -off- in var. conn and commited out set(conn,...)-function continued
* added matlab-version check to correctly set database connection parameters
* added variable tilt_angle
* replaced function split with function strsplit to get the release-version
Co-authored-by: ulysses78 <andiklamt78@yahoo.de>
* Added near-range SNR
* incorporated requested chagens from pull reqeust
Co-authored-by: Zhenping <zp.yin@whu.edu.cn>
Co-authored-by: Holger Baars <55800803+HolgerPollyNet@users.noreply.github.com>
Co-authored-by: ulysses78 <andiklamt78@yahoo.de>
* Added near-range quality mask (#128)
* Added near-range quality mask
* Added near range quality mask
* Added near range quality mask
* Dev (#129)
* Added near-range quality mask
* Added near range quality mask
* Added near range quality mask
* Changed file name to default name
Co-authored-by: griesche <48522799+griesche@users.noreply.github.com>
Co-authored-by: Holger Baars <55800803+HolgerPollyNet@users.noreply.github.com>
Co-authored-by: ulysses78 <andiklamt78@yahoo.de>
* Bugfixes: (quasi) angstroem plot
Bug Description
---------------
No plots of quasi-angstroem exponent after moving to Picasso v3.x.
Bug Analysis
------------
Wrong implementation of channel existence check for 1064 total.
``` matlab
flag1064 = data.flagFarRangeChannel & data.flag1064nmChannel & data.flagCrossChannel; % before
```
Bug Fixes
---------
Fix channel existence check, as below:
``` matlab
flag1064 = data.flagFarRangeChannel & data.flag1064nmChannel & data.flagTotalChannel;
```
close #134
* Bugfixes: replace empty/invalid gdas1 data
Replace invalid/empty GDAS1 profiles with profiles from standard atmosphere.
Close #135
* Bugfixes: correct meteor filter
Check for invalid meteorological data in last [commit](3f02c5b) is wrong, as `~ any(isnan(alt))` condition check would filter meteorological profile containing any NaN height level. The idea for this check is to detect profile which is empty, all NaNs or only one unique height level. Therefore, this check was corrected as below,
``` matlab
% previous
isempty(alt) || (~ any(isnan(alt))) || (length(unique(alt)) < 2)
% now
isempty(alt) || (~ all(isnan(alt))) || (length(unique(alt)) < 2)
```
associated with #135
* bug fixed of new meteor filter, ~ was wrong
* added 1064 nm, saving and displaying still missing, minor spell checking
* added saving of 1064s vertical profiles to netcdf.
* minor bug fixing, adding saving of 1064 depol products, started visualization of 1064 depol products
* added displaying of 1064 depol
* added some print_msg, to find out at which postition it takes that long time
* final changes for 1064s implementation
* bugfixes: minor fixes on 1064 depol
* Feat: 1064 depol (beta)
- Implement of 1064 depol for pollyxt_cpv
- Revise code style of python script
- Add prompts for data visualization
Co-authored-by: griesche <48522799+griesche@users.noreply.github.com>
Co-authored-by: Holger Baars <55800803+HolgerPollyNet@users.noreply.github.com>
Co-authored-by: ulysses78 <andiklamt78@yahoo.de>
Co-authored-by: Baymax <test@email.com>
Co-authored-by: Holger Baars <baars@tropos.de>
* Minor bug fixes in terms of running 1064 vdr in the server (#140)
* Homogenization of variable names for OC (overlap corected) and NR (near-range) files (#133)
* Added near-range SNR to pollySaveNRAttnBeta plus older commits (#125)
* Bugfixes: add Klett Bsc NR
Insert the metadata of Klett Bsc NR figure to the done_filelist.
close #116
* Bugfixes: show nr Klett profiles
Fix bugs associated with missing near-field profiles with Klett method. Update the version `3.2` to identify this change.
Close #116
* Andi branch 01 (#121)
* added database param -AutoCommit- and value -off- in var. conn and commited out set(conn,...)-function
* added database param -AutoCommit- and value -off- in var. conn and commited out set(conn,...)-function continued
* added matlab-version check to correctly set database connection parameters
* added variable tilt_angle
* replaced function split with function strsplit to get the release-version
Co-authored-by: ulysses78 <andiklamt78@yahoo.de>
* Added near-range SNR
* incorporated requested chagens from pull reqeust
Co-authored-by: Zhenping <zp.yin@whu.edu.cn>
Co-authored-by: Holger Baars <55800803+HolgerPollyNet@users.noreply.github.com>
Co-authored-by: ulysses78 <andiklamt78@yahoo.de>
* Added near-range quality mask (#128)
* Added near-range quality mask
* Added near range quality mask
* Added near range quality mask
* Dev (#129)
* Added near-range quality mask
* Added near range quality mask
* Added near range quality mask
* Changed file name to default name
Co-authored-by: griesche <48522799+griesche@users.noreply.github.com>
Co-authored-by: Holger Baars <55800803+HolgerPollyNet@users.noreply.github.com>
Co-authored-by: ulysses78 <andiklamt78@yahoo.de>
* Bugfixes: (quasi) angstroem plot
Bug Description
---------------
No plots of quasi-angstroem exponent after moving to Picasso v3.x.
Bug Analysis
------------
Wrong implementation of channel existence check for 1064 total.
``` matlab
flag1064 = data.flagFarRangeChannel & data.flag1064nmChannel & data.flagCrossChannel; % before
```
Bug Fixes
---------
Fix channel existence check, as below:
``` matlab
flag1064 = data.flagFarRangeChannel & data.flag1064nmChannel & data.flagTotalChannel;
```
close #134
* Bugfixes: replace empty/invalid gdas1 data
Replace invalid/empty GDAS1 profiles with profiles from standard atmosphere.
Close #135
* Bugfixes: correct meteor filter
Check for invalid meteorological data in last [commit](3f02c5b) is wrong, as `~ any(isnan(alt))` condition check would filter meteorological profile containing any NaN height level. The idea for this check is to detect profile which is empty, all NaNs or only one unique height level. Therefore, this check was corrected as below,
``` matlab
% previous
isempty(alt) || (~ any(isnan(alt))) || (length(unique(alt)) < 2)
% now
isempty(alt) || (~ all(isnan(alt))) || (length(unique(alt)) < 2)
```
associated with #135
* bug fixed of new meteor filter, ~ was wrong
* added 1064 nm, saving and displaying still missing, minor spell checking
* added saving of 1064s vertical profiles to netcdf.
* minor bug fixing, adding saving of 1064 depol products, started visualization of 1064 depol products
* added displaying of 1064 depol
* added some print_msg, to find out at which postition it takes that long time
* final changes for 1064s implementation
* bugfixes: minor fixes on 1064 depol
* Feat: 1064 depol (beta)
- Implement of 1064 depol for pollyxt_cpv
- Revise code style of python script
- Add prompts for data visualization
* bug fix 1064s and shots
minor bug fixing for the implementation of the 1064 depol.
And changes the storage of shots from int16 to int32, because partly more shots are used.
* variable inititalized
at different place
Co-authored-by: Zhenping Yin <ZP.Yin@whu.edu.cn>
Co-authored-by: griesche <48522799+griesche@users.noreply.github.com>
Co-authored-by: ulysses78 <andiklamt78@yahoo.de>
Co-authored-by: Baymax <test@email.com>
* Refractor: remove backup files
* Refractor: cont run w/o housekeeping plot
Keep pollynet processing chain running even without housekeeping plot and long-term calibration plot.
-> Good extension for simulated data from ALiDAn.
* minor changes for bug fixing, rsd2 compliance
* Adjust channel tags for 1064s (#141)
* Homogenization of variable names for OC (overlap corected) and NR (near-range) files (#133)
* Added near-range SNR to pollySaveNRAttnBeta plus older commits (#125)
* Bugfixes: add Klett Bsc NR
Insert the metadata of Klett Bsc NR figure to the done_filelist.
close #116
* Bugfixes: show nr Klett profiles
Fix bugs associated with missing near-field profiles with Klett method. Update the version `3.2` to identify this change.
Close #116
* Andi branch 01 (#121)
* added database param -AutoCommit- and value -off- in var. conn and commited out set(conn,...)-function
* added database param -AutoCommit- and value -off- in var. conn and commited out set(conn,...)-function continued
* added matlab-version check to correctly set database connection parameters
* added variable tilt_angle
* replaced function split with function strsplit to get the release-version
Co-authored-by: ulysses78 <andiklamt78@yahoo.de>
* Added near-range SNR
* incorporated requested chagens from pull reqeust
Co-authored-by: Zhenping <zp.yin@whu.edu.cn>
Co-authored-by: Holger Baars <55800803+HolgerPollyNet@users.noreply.github.com>
Co-authored-by: ulysses78 <andiklamt78@yahoo.de>
* Added near-range quality mask (#128)
* Added near-range quality mask
* Added near range quality mask
* Added near range quality mask
* Dev (#129)
* Added near-range quality mask
* Added near range quality mask
* Added near range quality mask
* Changed file name to default name
Co-authored-by: griesche <48522799+griesche@users.noreply.github.com>
Co-authored-by: Holger Baars <55800803+HolgerPollyNet@users.noreply.github.com>
Co-authored-by: ulysses78 <andiklamt78@yahoo.de>
* Bugfixes: (quasi) angstroem plot
Bug Description
---------------
No plots of quasi-angstroem exponent after moving to Picasso v3.x.
Bug Analysis
------------
Wrong implementation of channel existence check for 1064 total.
``` matlab
flag1064 = data.flagFarRangeChannel & data.flag1064nmChannel & data.flagCrossChannel; % before
```
Bug Fixes
---------
Fix channel existence check, as below:
``` matlab
flag1064 = data.flagFarRangeChannel & data.flag1064nmChannel & data.flagTotalChannel;
```
close #134
* Bugfixes: replace empty/invalid gdas1 data
Replace invalid/empty GDAS1 profiles with profiles from standard atmosphere.
Close #135
* Bugfixes: correct meteor filter
Check for invalid meteorological data in last [commit](3f02c5b) is wrong, as `~ any(isnan(alt))` condition check would filter meteorological profile containing any NaN height level. The idea for this check is to detect profile which is empty, all NaNs or only one unique height level. Therefore, this check was corrected as below,
``` matlab
% previous
isempty(alt) || (~ any(isnan(alt))) || (length(unique(alt)) < 2)
% now
isempty(alt) || (~ all(isnan(alt))) || (length(unique(alt)) < 2)
```
associated with #135
* bug fixed of new meteor filter, ~ was wrong
* added 1064 nm, saving and displaying still missing, minor spell checking
* added saving of 1064s vertical profiles to netcdf.
* minor bug fixing, adding saving of 1064 depol products, started visualization of 1064 depol products
* added displaying of 1064 depol
* added some print_msg, to find out at which postition it takes that long time
* final changes for 1064s implementation
* bugfixes: minor fixes on 1064 depol
* Feat: 1064 depol (beta)
- Implement of 1064 depol for pollyxt_cpv
- Revise code style of python script
- Add prompts for data visualization
* bug fix 1064s and shots
minor bug fixing for the implementation of the 1064 depol.
And changes the storage of shots from int16 to int32, because partly more shots are used.
* variable inititalized
at different place
* added channel tag for 1064s
* added 532p channel again
* changed color for 1064 depol
* just used dev requirements, no clue if this is correct
* bak files deleted
deleted bac files
* changes in global config to allow for 1064 depol (15 channles)
Co-authored-by: Zhenping Yin <ZP.Yin@whu.edu.cn>
Co-authored-by: griesche <48522799+griesche@users.noreply.github.com>
Co-authored-by: ulysses78 <andiklamt78@yahoo.de>
Co-authored-by: Baymax <test@email.com>
* Bugfixes: rm negative sig filter
Negative signal filter for calculating summed signal at reference height, leads to positive bias of (Raman) backscatter. Therefore, it was removed in this commit.
close #143
* changed format from dos to unix
* tracked folder \config
* changed pollyxt_names from uppercase to lowercase in config/pollynet_processing_chain_config_links.xlsx
Co-authored-by: griesche <48522799+griesche@users.noreply.github.com>
Co-authored-by: Zhenping <zp.yin@whu.edu.cn>
Co-authored-by: Holger Baars <55800803+HolgerPollyNet@users.noreply.github.com>
Co-authored-by: Baymax <test@email.com>
Co-authored-by: Holger Baars <baars@tropos.de>
* Bugfix for Temperature correction (#151)
* Added near-range SNR to pollySaveNRAttnBeta plus older commits (#125)
* Bugfixes: add Klett Bsc NR
Insert the metadata of Klett Bsc NR figure to the done_filelist.
close #116
* Bugfixes: show nr Klett profiles
Fix bugs associated with missing near-field profiles with Klett method. Update the version `3.2` to identify this change.
Close #116
* Andi branch 01 (#121)
* added database param -AutoCommit- and value -off- in var. conn and commited out set(conn,...)-function
* added database param -AutoCommit- and value -off- in var. conn and commited out set(conn,...)-function continued
* added matlab-version check to correctly set database connection parameters
* added variable tilt_angle
* replaced function split with function strsplit to get the release-version
Co-authored-by: ulysses78 <andiklamt78@yahoo.de>
* Added near-range SNR
* incorporated requested chagens from pull reqeust
Co-authored-by: Zhenping <zp.yin@whu.edu.cn>
Co-authored-by: Holger Baars <55800803+HolgerPollyNet@users.noreply.github.com>
Co-authored-by: ulysses78 <andiklamt78@yahoo.de>
* Added near-range quality mask (#128)
* Added near-range quality mask
* Added near range quality mask
* Added near range quality mask
* Dev (#129)
* Added near-range quality mask
* Added near range quality mask
* Added near range quality mask
* Changed file name to default name
* added 1064 nm, saving and displaying still missing, minor spell checking
* added saving of 1064s vertical profiles to netcdf.
* minor bug fixing, adding saving of 1064 depol products, started visualization of 1064 depol products
* added displaying of 1064 depol
* added some print_msg, to find out at which postition it takes that long time
* final changes for 1064s implementation
* bugfixes: minor fixes on 1064 depol
* Feat: 1064 depol (beta)
- Implement of 1064 depol for pollyxt_cpv
- Revise code style of python script
- Add prompts for data visualization
* Implementation of 1064 depol for pollyxt_cpv (#139)
* Homogenization of variable names for OC (overlap corected) and NR (near-range) files (#133)
* Added near-range SNR to pollySaveNRAttnBeta plus older commits (#125)
* Bugfixes: add Klett Bsc NR
Insert the metadata of Klett Bsc NR figure to the done_filelist.
close #116
* Bugfixes: show nr Klett profiles
Fix bugs associated with missing near-field profiles with Klett method. Update the version `3.2` to identify this change.
Close #116
* Andi branch 01 (#121)
* added database param -AutoCommit- and value -off- in var. conn and commited out set(conn,...)-function
* added database param -AutoCommit- and value -off- in var. conn and commited out set(conn,...)-function continued
* added matlab-version check to correctly set database connection parameters
* added variable tilt_angle
* replaced function split with function strsplit to get the release-version
Co-authored-by: ulysses78 <andiklamt78@yahoo.de>
* Added near-range SNR
* incorporated requested chagens from pull reqeust
Co-authored-by: Zhenping <zp.yin@whu.edu.cn>
Co-authored-by: Holger Baars <55800803+HolgerPollyNet@users.noreply.github.com>
Co-authored-by: ulysses78 <andiklamt78@yahoo.de>
* Added near-range quality mask (#128)
* Added near-range quality mask
* Added near range quality mask
* Added near range quality mask
* Dev (#129)
* Added near-range quality mask
* Added near range quality mask
* Added near range quality mask
* Changed file name to default name
Co-authored-by: griesche <48522799+griesche@users.noreply.github.com>
Co-authored-by: Holger Baars <55800803+HolgerPollyNet@users.noreply.github.com>
Co-authored-by: ulysses78 <andiklamt78@yahoo.de>
* Bugfixes: (quasi) angstroem plot
Bug Description
---------------
No plots of quasi-angstroem exponent after moving to Picasso v3.x.
Bug Analysis
------------
Wrong implementation of channel existence check for 1064 total.
``` matlab
flag1064 = data.flagFarRangeChannel & data.flag1064nmChannel & data.flagCrossChannel; % before
```
Bug Fixes
---------
Fix channel existence check, as below:
``` matlab
flag1064 = data.flagFarRangeChannel & data.flag1064nmChannel & data.flagTotalChannel;
```
close #134
* Bugfixes: replace empty/invalid gdas1 data
Replace invalid/empty GDAS1 profiles with profiles from standard atmosphere.
Close #135
* Bugfixes: correct meteor filter
Check for invalid meteorological data in last [commit](3f02c5b) is wrong, as `~ any(isnan(alt))` condition check would filter meteorological profile containing any NaN height level. The idea for this check is to detect profile which is empty, all NaNs or only one unique height level. Therefore, this check was corrected as below,
``` matlab
% previous
isempty(alt) || (~ any(isnan(alt))) || (length(unique(alt)) < 2)
% now
isempty(alt) || (~ all(isnan(alt))) || (length(unique(alt)) < 2)
```
associated with #135
* bug fixed of new meteor filter, ~ was wrong
* added 1064 nm, saving and displaying still missing, minor spell checking
* added saving of 1064s vertical profiles to netcdf.
* minor bug fixing, adding saving of 1064 depol products, started visualization of 1064 depol products
* added displaying of 1064 depol
* added some print_msg, to find out at which postition it takes that long time
* final changes for 1064s implementation
* bugfixes: minor fixes on 1064 depol
* Feat: 1064 depol (beta)
- Implement of 1064 depol for pollyxt_cpv
- Revise code style of python script
- Add prompts for data visualization
Co-authored-by: griesche <48522799+griesche@users.noreply.github.com>
Co-authored-by: Holger Baars <55800803+HolgerPollyNet@users.noreply.github.com>
Co-authored-by: ulysses78 <andiklamt78@yahoo.de>
Co-authored-by: Baymax <test@email.com>
Co-authored-by: Holger Baars <baars@tropos.de>
* bug fix 1064s and shots
minor bug fixing for the implementation of the 1064 depol.
And changes the storage of shots from int16 to int32, because partly more shots are used.
* variable inititalized
at different place
* Minor bug fixes in terms of running 1064 vdr in the server (#140)
* Homogenization of variable names for OC (overlap corected) and NR (near-range) files (#133)
* Added near-range SNR to pollySaveNRAttnBeta plus older commits (#125)
* Bugfixes: add Klett Bsc NR
Insert the metadata of Klett Bsc NR figure to the done_filelist.
close #116
* Bugfixes: show nr Klett profiles
Fix bugs associated with missing near-field profiles with Klett method. Update the version `3.2` to identify this change.
Close #116
* Andi branch 01 (#121)
* added database param -AutoCommit- and value -off- in var. conn and commited out set(conn,...)-function
* added database param -AutoCommit- and value -off- in var. conn and commited out set(conn,...)-function continued
* added matlab-version check to correctly set database connection parameters
* added variable tilt_angle
* replaced function split with function strsplit to get the release-version
Co-authored-by: ulysses78 <andiklamt78@yahoo.de>
* Added near-range SNR
* incorporated requested chagens from pull reqeust
Co-authored-by: Zhenping <zp.yin@whu.edu.cn>
Co-authored-by: Holger Baars <55800803+HolgerPollyNet@users.noreply.github.com>
Co-authored-by: ulysses78 <andiklamt78@yahoo.de>
* Added near-range quality mask (#128)
* Added near-range quality mask
* Added near range quality mask
* Added near range quality mask
* Dev (#129)
* Added near-range quality mask
* Added near range quality mask
* Added near range quality mask
* Changed file name to default name
Co-authored-by: griesche <48522799+griesche@users.noreply.github.com>
Co-authored-by: Holger Baars <55800803+HolgerPollyNet@users.noreply.github.com>
Co-authored-by: ulysses78 <andiklamt78@yahoo.de>
* Bugfixes: (quasi) angstroem plot
Bug Description
---------------
No plots of quasi-angstroem exponent after moving to Picasso v3.x.
Bug Analysis
------------
Wrong implementation of channel existence check for 1064 total.
``` matlab
flag1064 = data.flagFarRangeChannel & data.flag1064nmChannel & data.flagCrossChannel; % before
```
Bug Fixes
---------
Fix channel existence check, as below:
``` matlab
flag1064 = data.flagFarRangeChannel & data.flag1064nmChannel & data.flagTotalChannel;
```
close #134
* Bugfixes: replace empty/invalid gdas1 data
Replace invalid/empty GDAS1 profiles with profiles from standard atmosphere.
Close #135
* Bugfixes: correct meteor filter
Check for invalid meteorological data in last [commit](3f02c5b) is wrong, as `~ any(isnan(alt))` condition check would filter meteorological profile containing any NaN height level. The idea for this check is to detect profile which is empty, all NaNs or only one unique height level. Therefore, this check was corrected as below,
``` matlab
% previous
isempty(alt) || (~ any(isnan(alt))) || (length(unique(alt)) < 2)
% now
isempty(alt) || (~ all(isnan(alt))) || (length(unique(alt)) < 2)
```
associated with #135
* bug fixed of new meteor filter, ~ was wrong
* added 1064 nm, saving and displaying still missing, minor spell checking
* added saving of 1064s vertical profiles to netcdf.
* minor bug fixing, adding saving of 1064 depol products, started visualization of 1064 depol products
* added displaying of 1064 depol
* added some print_msg, to find out at which postition it takes that long time
* final changes for 1064s implementation
* bugfixes: minor fixes on 1064 depol
* Feat: 1064 depol (beta)
- Implement of 1064 depol for pollyxt_cpv
- Revise code style of python script
- Add prompts for data visualization
* bug fix 1064s and shots
minor bug fixing for the implementation of the 1064 depol.
And changes the storage of shots from int16 to int32, because partly more shots are used.
* variable inititalized
at different place
Co-authored-by: Zhenping Yin <ZP.Yin@whu.edu.cn>
Co-authored-by: griesche <48522799+griesche@users.noreply.github.com>
Co-authored-by: ulysses78 <andiklamt78@yahoo.de>
Co-authored-by: Baymax <test@email.com>
* Refractor: remove backup files
* Refractor: cont run w/o housekeeping plot
Keep pollynet processing chain running even without housekeeping plot and long-term calibration plot.
-> Good extension for simulated data from ALiDAn.
* minor changes for bug fixing, rsd2 compliance
* added channel tag for 1064s
* added 532p channel again
* changed color for 1064 depol
* just used dev requirements, no clue if this is correct
* bak files deleted
deleted bac files
* changes in global config to allow for 1064 depol (15 channles)
* Adjust channel tags for 1064s (#141)
* Homogenization of variable names for OC (overlap corected) and NR (near-range) files (#133)
* Added near-range SNR to pollySaveNRAttnBeta plus older commits (#125)
* Bugfixes: add Klett Bsc NR
Insert the metadata of Klett Bsc NR figure to the done_filelist.
close #116
* Bugfixes: show nr Klett profiles
Fix bugs associated with missing near-field profiles with Klett method. Update the version `3.2` to identify this change.
Close #116
* Andi branch 01 (#121)
* added database param -AutoCommit- and value -off- in var. conn and commited out set(conn,...)-function
* added database param -AutoCommit- and value -off- in var. conn and commited out set(conn,...)-function continued
* added matlab-version check to correctly set database connection parameters
* added variable tilt_angle
* replaced function split with function strsplit to get the release-version
Co-authored-by: ulysses78 <andiklamt78@yahoo.de>
* Added near-range SNR
* incorporated requested chagens from pull reqeust
Co-authored-by: Zhenping <zp.yin@whu.edu.cn>
Co-authored-by: Holger Baars <55800803+HolgerPollyNet@users.noreply.github.com>
Co-authored-by: ulysses78 <andiklamt78@yahoo.de>
* Added near-range quality mask (#128)
* Added near-range quality mask
* Added near range quality mask
* Added near range quality mask
* Dev (#129)
* Added near-range quality mask
* Added near range quality mask
* Added near range quality mask
* Changed file name to default name
Co-authored-by: griesche <48522799+griesche@users.noreply.github.com>
Co-authored-by: Holger Baars <55800803+HolgerPollyNet@users.noreply.github.com>
Co-authored-by: ulysses78 <andiklamt78@yahoo.de>
* Bugfixes: (quasi) angstroem plot
Bug Description
---------------
No plots of quasi-angstroem exponent after moving to Picasso v3.x.
Bug Analysis
------------
Wrong implementation of channel existence check for 1064 total.
``` matlab
flag1064 = data.flagFarRangeChannel & data.flag1064nmChannel & data.flagCrossChannel; % before
```
Bug Fixes
---------
Fix channel existence check, as below:
``` matlab
flag1064 = data.flagFarRangeChannel & data.flag1064nmChannel & data.flagTotalChannel;
```
close #134
* Bugfixes: replace empty/invalid gdas1 data
Replace invalid/empty GDAS1 profiles with profiles from standard atmosphere.
Close #135
* Bugfixes: correct meteor filter
Check for invalid meteorological data in last [commit](3f02c5b) is wrong, as `~ any(isnan(alt))` condition check would filter meteorological profile containing any NaN height level. The idea for this check is to detect profile which is empty, all NaNs or only one unique height level. Therefore, this check was corrected as below,
``` matlab
% previous
isempty(alt) || (~ any(isnan(alt))) || (length(unique(alt)) < 2)
% now
isempty(alt) || (~ all(isnan(alt))) || (length(unique(alt)) < 2)
```
associated with #135
* bug fixed of new meteor filter, ~ was wrong
* added 1064 nm, saving and displaying still missing, minor spell checking
* added saving of 1064s vertical profiles to netcdf.
* minor bug fixing, adding saving of 1064 depol products, started visualization of 1064 depol products
* added displaying of 1064 depol
* added some print_msg, to find out at which postition it takes that long time
* final changes for 1064s implementation
* bugfixes: minor fixes on 1064 depol
* Feat: 1064 depol (beta)
- Implement of 1064 depol for pollyxt_cpv
- Revise code style of python script
- Add prompts for data visualization
* bug fix 1064s and shots
minor bug fixing for the implementation of the 1064 depol.
And changes the storage of shots from int16 to int32, because partly more shots are used.
* variable inititalized
at different place
* added channel tag for 1064s
* added 532p channel again
* changed color for 1064 depol
* just used dev requirements, no clue if this is correct
* bak files deleted
deleted bac files
* changes in global config to allow for 1064 depol (15 channles)
Co-authored-by: Zhenping Yin <ZP.Yin@whu.edu.cn>
Co-authored-by: griesche <48522799+griesche@users.noreply.github.com>
Co-authored-by: ulysses78 <andiklamt78@yahoo.de>
Co-authored-by: Baymax <test@email.com>
* bug fix for T correction
T correction did not work
* Update pollyPreprocess.m
small format change
Co-authored-by: griesche <48522799+griesche@users.noreply.github.com>
Co-authored-by: Zhenping <zp.yin@whu.edu.cn>
Co-authored-by: ulysses78 <andiklamt78@yahoo.de>
Co-authored-by: Baymax <test@email.com>
Co-authored-by: Zhenping Yin <ZP.Yin@whu.edu.cn>
Co-authored-by: griesche <48522799+griesche@users.noreply.github.com>
Co-authored-by: ulysses78 <andiklamt78@yahoo.de>
Co-authored-by: Baymax <test@email.com>
Co-authored-by: ulysses78 <86650998+ulysses78@users.noreply.github.com>1 parent 06ffbdf commit 55253f7Copy full SHA for 55253f7
File tree
Expand file treeCollapse file tree
3 files changed
+5
-3
lines changedFilter options
- lib
- interface
- io
- preprocess
Expand file treeCollapse file tree
3 files changed
+5
-3
lines changedCollapse file: lib/interface/picassoProcV3.m
lib/interface/picassoProcV3.m
Copy file name to clipboardExpand all lines: lib/interface/picassoProcV3.m+2-1Lines changed: 2 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
398 | 398 |
| |
399 | 399 |
| |
400 | 400 |
| |
401 |
| - | |
| 401 | + | |
| 402 | + | |
402 | 403 |
| |
403 | 404 |
| |
404 | 405 |
| |
|
Collapse file: lib/io/pollySaveNRAttnBeta.m
lib/io/pollySaveNRAttnBeta.m
Copy file name to clipboardExpand all lines: lib/io/pollySaveNRAttnBeta.m+1-1Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
16 | 16 |
| |
17 | 17 |
| |
18 | 18 |
| |
19 |
| - | |
| 19 | + | |
20 | 20 |
| |
21 | 21 |
| |
22 | 22 |
| |
|
Collapse file: lib/preprocess/pollyPreprocess.m
lib/preprocess/pollyPreprocess.m
Copy file name to clipboardExpand all lines: lib/preprocess/pollyPreprocess.m+2-1Lines changed: 2 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
195 | 195 |
| |
196 | 196 |
| |
197 | 197 |
| |
| 198 | + | |
198 | 199 |
| |
199 | 200 |
| |
200 | 201 |
| |
| |||
295 | 296 |
| |
296 | 297 |
| |
297 | 298 |
| |
298 |
| - | |
| 299 | + | |
299 | 300 |
| |
300 | 301 |
| |
301 | 302 |
| |
|
0 commit comments