Replies: 1 comment 2 replies
|
Hi, status_flags |
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hi guys;
I have a simulation where I have set a one year continuous release with a max_age_seconds of 180 days. I run the model for 1.5 years.
Now, I am trying to do a density map trying to show how many times a lat lon bin have been visited during my simulation period.
I am able to do that following the "Analysing huge output files" gallery example.
h = oa.get_histogram(pixelsize_m=10000)
b=h.isel(origin_marker=0).sum(dim='time')
oa.plot(background=b.where(b>0), fast=True, show_elements=False, vmin=0, vmax=1000, clabel='First seeding')
However, I you like to only use the "active" particles time in the calculations.
I know, my status flags output are "active stranded retired" and I am trying to use it to find the density maps without success.
Any suggestions where to start?
Best regards;
Carlos
All reactions