Panoply animation

Hi, I would like to visualize an animation that i have created with HARP. The animation work well in Visan but, when I open it in Panoply, I have this error message “Axis var $s is>1D”. All parameter is 2D type, instead in the one day images I have found tha type is Geo2D.
may anyone halp me?
In what way I must create animation for Panoply software?

Hello,
nobody can help me?

Note that this forum is not about Panoply. So anything Panoply specific is something you will not find answers for here.

HARP data can be plotted in Panoply though. You have to make sure that you make all axis variables time-independent. Make sure that you are using squash(time, (latitude,longitude)) as is also used in e.g. this post.

Hello,
sorry for my question, I’m working with HARP and animation work well, I tried also -squash(time, (latitude,longitude))- but I think not well, so I had only a one time merged product.
thank you

Hello,
I tried to obtain a file whit axis time indipendent using this:
harpmerge -ap 'bin(); squash(time, (latitude,longitude))’ -a 'latitude > 37.5 [degree_north]; latitude < 40.3 [degree_north]; longitude > 15 [degree_east]; longitude < 17.5 [degree_east]; tropospheric_NO2_column_number_density_validity >75; bin_spatial(280,37.5,0.01,250,15,0.01); derive(longitude {longitude}); derive(latitude {latitude})′ Desktop\a Desktop\risultati\test3

it seems do not work for my purpose, I visualize a simple image merged of 5 in this case.
Thank you in advance for your help

Hi,
I found the correct instruction, without bin():
harpmerge -ap 'squash(time, (latitude,longitude))’ -a ‘latitude > 37.5 [degree_north]; latitude < 40.3 [degree_north]; longitude > 15 [degree_east]; longitude < 17.5 [degree_east]; tropospheric_NO2_column_number_density_validity >75; bin_spatial(280,37.5,0.01,250,15,0.01); derive(longitude {longitude}); derive(latitude {latitude})’ Desktop\a Desktop\risultati\test4
rigth?
Hope this can help somebody else