1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
harpdump
========
Inspect the contents of a file that can be imported by HARP.
::
Usage:
harpdump [options] <input product file>
Print the contents of a HARP imported product.
Options:
-a, --operations <operation list>
List of operations to apply to the product before printing.
An operation list needs to be provided as a single expression.
See the 'operations' section of the HARP documentation for
more details.
-o, --options <option list>
List of options to pass to the ingestion module.
Only applicable if the input product is not in HARP format.
Options are separated by semi-colons. Each option consists
of an <option name>=<value> pair. An option list needs to be
provided as a single expression.
-l, --list
Only show list of variables (no attributes).
-d, --data
Show data values for each variable.
--no-history
Do not show the global history attribute.
harpdump --dataset [options] <file|dir> [<file|dir> ...]
Print metadata for all files in the dataset in csv format.
-o, --options <option list>
List of options to pass to the ingestion module.
Only applicable if the input product is not in HARP format.
Options are separated by semi-colons. Each option consists
of an <option name>=<value> pair. An option list needs to be
provided as a single expression.
harpdump --list-derivations [options] [input product file]
List all available variable conversions. If an input product file is
specified, limit the list to variable conversions that are possible
given the specified product.
Options:
-a, --operations <operation list>
List of operations to apply to the product before determining
the possible derivations.
An operation list needs to be provided as a single expression.
See the 'operations' section of the HARP documentation for
more details.
-o, --options <option list>
List of options to pass to the ingestion module.
Only applicable if the input product is not in HARP format.
Options are separated by semi-colons. Each option consists
of an <option name>=<value> pair. An option list needs to be
provided as a single expression.
-t, --target <variable_name>
Only show derivations that produce the given variable.
harpdump -h, --help
Show help (this text).
harpdump -v, --version
Print the version number of HARP and exit.
|