Do you use Panoply / ncview / other command line viz tool?

To provide my thoughts as a past user of panoply:

  1. When I need to quickly examine a data file, e.g. model output without having to type the following (before hvplot was released):
import xarray as xr
ds = xr.open_dataset("path/to/file")["take time to figure out var name"].isel(remove_other_variables=0)
ds.plot(x="take_time_to_figure_out_x", y="take time to figure out y name")

And sometimes, I would just create a .py file / notebook in the data directory, which is a bit disorganized.

  1. A plot immediately shows, support for a variety of file formats,
  2. Interactively zoom-in/out and check for values at points
  3. I would :slight_smile: