|
|
# Checker
|
|
|
|
|
|
Checks all variables in a NetCDF file for NaN and/or Inf values.
|
|
|
|
|
|
## Syntax
|
|
|
|
|
|
```bash
|
|
|
nes check -f <input_file.nc> [--nan] [--no-nan] [--inf] [--no-inf]
|
|
|
```
|
|
|
|
|
|
## Arguments
|
|
|
|
|
|
- `-f`, `--file`: Path to the NetCDF file to validate. **(required)**
|
|
|
- `--nan`: Enable NaN checking (default: enabled).
|
|
|
- `--no-nan`: Disable NaN checking.
|
|
|
- `--inf`: Enable Inf checking (default: enabled).
|
|
|
- `--no-inf`: Disable Inf checking.
|
|
|
|
|
|
## Example
|
|
|
|
|
|
```bash
|
|
|
nes check -f output.nc
|
|
|
```
|
|
|
|
|
|
Disables Inf checking:
|
|
|
|
|
|
```bash
|
|
|
nes check -f output.nc --no-inf
|
|
|
``` |
|
|
\ No newline at end of file |