-
Notifications
You must be signed in to change notification settings - Fork 5
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
Update notebooks in extra
#251
base: main
Are you sure you want to change the base?
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## master #251 +/- ##
=======================================
Coverage 92.48% 92.48%
=======================================
Files 7 7
Lines 386 386
=======================================
Hits 357 357
Misses 29 29 ☔ View full report in Codecov by Sentry. |
extra
for new output file formatextra
# ╔═╡ 91e9009c-903f-11ee-2d75-653c9e327f0e | ||
begin | ||
using Pkg | ||
Pkg.activate(".") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Look at avoiding sidestepping Pluto's dependency management
Updates the Jupyter and Pluto notebooks in
extra
to be compatible with howParticleDA
now write output files (separate files for simulated observations and filtering estimates, some changes to group names).Rather than previous approach of storing a HDF5 output file
particle_da.h5
in the repository, this is removed in favour of now having a separate Pluto notebook / Julia scriptllwd_example.jl
which will simulated observations from the LLW2d model, run a particle filter and save the simulation and filtering output to HDF5 files.Two notebooks are shown to illustrate loading the generated HDF5 output data and producing visualizations, one in Python as a Jupyter notebook
llw2d_visualizations.ipynb
and one in Julia as a Pluto notebookllw2d_visualizations.jl
.EDIT: Now also added a Pluto notebook
lorenz63_example.jl
showing running filtering with Lorenz 63 model (and producing plots comparable to those in paper).