Opened 7 years ago
Closed 6 years ago
#571 closed task (duplicate)
Do not warn on the use of --no-ranchk [0.5 d]
| Reported by: | Ian Culverwell | Owned by: | Ian Culverwell |
|---|---|---|---|
| Priority: | normal | Milestone: | ROPP9.1 carry over |
| Component: | ropp_io | Version: | 9.0 |
| Keywords: | Cc: |
Description
https://trac.romsaf.org/ropp/changeset/5427/ropp_src/branches/dev/Share/dmi_trunk_9.0/ropp_io/ropp/ropp_io.f90 https://trac.romsaf.org/ropp/changeset/5427/ropp_src/branches/dev/Share/dmi_trunk_9.0/ropp_io/ropp/ropp_io_read.f90 https://trac.romsaf.org/ropp/changeset/5427/ropp_src/branches/dev/Share/dmi_trunk_9.0/ropp_io/ropp/ropp_io_read_ncdf_get.f90 https://trac.romsaf.org/ropp/changeset/5427/ropp_src/branches/dev/Share/dmi_trunk_9.0/ropp_io/tools/eum2bufr_ec.f90 https://trac.romsaf.org/ropp/changeset/5427/ropp_src/branches/dev/Share/dmi_trunk_9.0/ropp_io/tools/eum2ropp.f90 https://trac.romsaf.org/ropp/changeset/5427/ropp_src/branches/dev/Share/dmi_trunk_9.0/ropp_io/tools/ropp2bufr_ec.f90 (similar/consistent updates to ropp2bufr_mo.f90 has not been made since https://trac.romsaf.org/ropp/changeset/3430)
Original changesets:
Do not warn on the use of --no-ranchk: https://trac.romsaf.org/ropp/changeset/4820
Change history (3)
comment:1 by , 7 years ago
| Summary: | Do not warn on the use of --no-ranchk [0.5 d → Do not warn on the use of --no-ranchk [0.5 d] |
|---|
comment:2 by , 6 years ago
comment:3 by , 6 years ago
| Resolution: | → duplicate |
|---|---|
| Status: | new → closed |

Presumably the
--no-ranchkwarning breaks the operational system because it results in a return code of$? = 1.Default:
prompt:> ../tools/eum2ropp ../data/eum_test.n4 -l cl+rs -o eum_test_l.nc --------------------------------------------------------------------- EUMETSAT to ROPP netCDF Converter --------------------------------------------------------------------- INFO (from eum2ropp): Reading file ../data/eum_test.n4 INFO (from ropp_io_read_eumdata): raw_sampling data requested but are not available in file INFO (from eum2ropp): Profile 1 : OC_20120909000057_META_G015_EUME INFO (from eum2ropp): Writing eum_test_l.nc prompt:> echo $? 0If you switch off range-checking:
prompt:> ../tools/eum2ropp ../data/eum_test.n4 -l cl+rs -o eum_test_l.nc --no-ranchk --------------------------------------------------------------------- EUMETSAT to ROPP netCDF Converter --------------------------------------------------------------------- WARNING (from eum2ropp): Range checking is disabled INFO (from eum2ropp): Reading file ../data/eum_test.n4 INFO (from ropp_io_read_eumdata): raw_sampling data requested but are not available in file INFO (from eum2ropp): Profile 1 : OC_20120909000057_META_G015_EUME INFO (from eum2ropp): Writing eum_test_l.nc prompt:> echo $? 1By downgrading the WARNING to an INFO message you still get an indication that you're switching off range-checking:
prompt:> ../tools/eum2ropp ../data/eum_test.n4 -l cl+rs -o eum_test_l.nc --no-ranchk --------------------------------------------------------------------- EUMETSAT to ROPP netCDF Converter --------------------------------------------------------------------- INFO (from eum2ropp): Range checking is disabled INFO (from eum2ropp): Reading file ../data/eum_test.n4 INFO (from ropp_io_read_eumdata): raw_sampling data requested but are not available in file INFO (from eum2ropp): Profile 1 : OC_20120909000057_META_G015_EUME INFO (from eum2ropp): Writing eum_test_l.nc prompt:> echo $? 0