Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature step4 integration #50

Merged
merged 15 commits into from
Jan 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/test-B01_SL_load_single_file.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,5 @@ jobs:
run: python src/icesat2_tracks/analysis_db/B02_make_spectra_gFT.py SH_20190502_05180312 SH_testSLsinglefile2 True
- name: third step plot_spectra
run: python src/icesat2_tracks/analysis_db/B03_plot_spectra_ov.py SH_20190502_05180312 SH_testSLsinglefile2 True
- name: fourth step plot_spectra
run: python src/icesat2_tracks/analysis_db/A02c_IOWAGA_thredds_prior.py SH_20190502_05180312 SH_testSLsinglefile2 True
2 changes: 1 addition & 1 deletion analyis_publish/PB03_plot_spectra_3x3_ov.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def plot_wavenumber_spectrogram(ax, Gi, clev, plot_photon_density=True , cmap=No
#Gmean = G_gFT_wmean['gFT_PSD_data'].rolling(k=5, center=True).mean()


Gmean = gFT.rebin(G_gFT_wmean['gFT_PSD_data'], 10)
Gmean,_ = gFT.rebin(G_gFT_wmean['gFT_PSD_data'], 10)

#Gmean = Gmean.where(~np.isnan(Gmean), 0)

Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@ dependencies = [ # Optional
"sliderule==4.1.0",
"ipyleaflet",
"lmfit",
"tables"
"tables",
"siphon"
]

# List additional groups of dependencies here (e.g. development
Expand Down
Loading