info Sub-command

The info sub-command provides information about your installed version of Reshapr and the dask clusters and model profiles that are included with it. Here is an example of the most basic level of output from pixi run reshapr info:

reshapr, version 26.2.dev0
xarray, version 2026.2.0
dask, version 2026.3.0
h5netcdf, version 1.8.1
netcdf4, version 1.7.4

dask cluster configurations included in this package:
  nibi_cluster.yaml
  salish_cluster.yaml

model profiles included in this package:
  SalishSeaCast-201905.yaml
  SalishSeaCast-201905-month-avg-salish.yaml
  SalishSeaCast-201812.yaml
  SalishSeaCast-202111-month-avg-salish.yaml
  HRDPS-2.5km-GEMLAM-22sep11onward.yaml
  SalishSeaCast-202111-salish.yaml
  HRDPS-2.5km-GEMLAM-pre22sep11.yaml
  SalishSeaCast-202111-2xrez-salish.yaml
  HRDPS-2.5km-operational.yaml

Please use reshapr info --help to learn how to get deeper information,
or reshapr --help to learn about other sub-commands.

pixi run reshapr info --help will show you how you can get other information to help you use Reshapr:

Usage: reshapr info [OPTIONS] [CLUSTER_OR_MODEL] [TIME_INTERVAL] [VARS_GROUP]...

  Provide information about the installed Reshapr package.

  With no cluster or model profile the following information is shown:

  * versions of reshapr, xarray, dask & netcdf4 packages

  * list of dask cluster configurations included in the package

  * list of model profiles included in the package

  Specify a dask cluster configuration (e.g. `reshapr info salish_cluster`) or
  a model profile (e.g. `reshapr info SalishSeaCast-201905`) to get
  information about them.

  Specify a model profile, time interval, and variable group (e.g. `reshapr
  info SalishSeaCast-201905 hour biology`) to get the list of variables
  available in that dataset.

Options:
  --help  Show this message and exit.

info cluster

pixi runm reshaper info followed by one of the dask cluster configurations shown in the basic information list will show you the cluster settings.

Please see Dask Cluster Configuration File for details about cluster configs.

Example:

$ pixi run reshapr info salish_cluster.yaml
salish_cluster.yaml:
  # Configuration for a dask cluster on salish

  name: salish dask cluster
  processes: True
  number of workers: 4
  threads per worker: 1
  memory limit: "64G"

Please use reshapr info --help to learn how to get other information,
or reshapr --help to learn about other sub-commands.

info model-profile

pixi run reshaper info followed by one of the model profiles shown in the basic information list will show you information about model product time intervals and variable groups.

Please see Model Profile Files for details about model profiles.

Example:

$ pixi run reshapr info SalishSeaCast-201905.yaml
SalishSeaCast-201905.yaml:
  SalishSeaCast version 201905 NEMO results on storage accessible from
  salish. 2007-01-01 onward.

variable groups from time intervals in this model:
  day
    auxiliary
    biology
    biology and chemistry rates
    chemistry
    grazing and mortality
    physics tracers
  hour
    auxiliary
    biology
    chemistry
    physics tracers
    u velocity
    v velocity
    vertical turbulence
    w velocity

Please use reshapr info model-profile time-interval variable-group
(e.g. reshapr info SalishSeaCast-201905 hour biology)
to get the list of variables in a variable group.

Please use reshapr info --help to learn how to get other information,
or reshapr --help to learn about other sub-commands.

info model-profile time-interval variable-group

pixi run reshaper info model-profile followed by one of the time intervals, and one of the variable group names for that time interval (shown in the model profile information output) will show you the list of model variables available in the variable group for that time interval.

Please see Model Profile Files for details about model profiles.

Example:

$ pixi run reshapr info SalishSeaCast-201905.yaml hour biology
SalishSeaCast-201905.yaml:
  SalishSeaCast version 201905 NEMO results on storage accessible from
  salish. 2007-01-01 onward.

hour-averaged variables in biology group:
  - nitrate : Nitrate Concentration [mmol m-3]
  - ammonium : Ammonium Concentration [mmol m-3]
  - silicon : Silicon Concentration [mmol m-3]
  - diatoms : Diatoms Concentration [mmol m-3]
  - flagellates : Flagellates Concentration [mmol m-3]
  - ciliates : Mesodinium rubrum Concentration [mmol m-3]
  - microzooplankton : Microzooplankton Concentration [mmol m-3]
  - dissolved_organic_nitrogen : Dissolved Organic N Concentration [mmol m-3]
  - particulate_organic_nitrogen : Particulate Organic N Concentration [mmol m-3]
  - biogenic_silicon : Biogenic Silicon Concentration [mmol m-3]
  - mesozooplankton : Mesozooplankton Concentration [mmol m-3]

Please use reshapr info --help to learn how to get other information,
or reshapr --help to learn about other sub-commands.