mirror of https://github.com/ecmwf/eccodes.git
ECC-1868: Nearest neighbour
This commit is contained in:
parent
9808b03d76
commit
39f73fda5c
|
@ -52,7 +52,7 @@ grib_iterator* grib_iterator_new(const grib_handle* ch, unsigned long flags, int
|
||||||
{
|
{
|
||||||
*error = GRIB_FUNCTIONALITY_NOT_ENABLED;
|
*error = GRIB_FUNCTIONALITY_NOT_ENABLED;
|
||||||
grib_context_log(ch->context, GRIB_LOG_ERROR,
|
grib_context_log(ch->context, GRIB_LOG_ERROR,
|
||||||
"Geoiterator support not enabled. Please rebuild with -DENABLE_GEOGRAPHY=ON");
|
"Geoiterator functionality not enabled. Please rebuild with -DENABLE_GEOGRAPHY=ON");
|
||||||
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,6 +27,7 @@ void grib_accessor_class_nearest_t::dump(grib_accessor* a, grib_dumper* dumper)
|
||||||
grib_dump_label(dumper, a, NULL);
|
grib_dump_label(dumper, a, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if defined(HAVE_GEOGRAPHY)
|
||||||
grib_nearest* grib_nearest_new(const grib_handle* ch, int* error)
|
grib_nearest* grib_nearest_new(const grib_handle* ch, int* error)
|
||||||
{
|
{
|
||||||
grib_handle* h = (grib_handle*)ch;
|
grib_handle* h = (grib_handle*)ch;
|
||||||
|
@ -47,3 +48,13 @@ grib_nearest* grib_nearest_new(const grib_handle* ch, int* error)
|
||||||
|
|
||||||
return n;
|
return n;
|
||||||
}
|
}
|
||||||
|
#else
|
||||||
|
grib_nearest* grib_nearest_new(const grib_handle* ch, int* error)
|
||||||
|
{
|
||||||
|
*error = GRIB_FUNCTIONALITY_NOT_ENABLED;
|
||||||
|
grib_context_log(ch->context, GRIB_LOG_ERROR,
|
||||||
|
"Nearest neighbour functionality not enabled. Please rebuild with -DENABLE_GEOGRAPHY=ON");
|
||||||
|
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
|
@ -35,44 +35,43 @@ grep -q "Nh (Key/value not found)" $tempText
|
||||||
|
|
||||||
# Nearest
|
# Nearest
|
||||||
# ---------
|
# ---------
|
||||||
set +e
|
if [ $HAVE_GEOGRAPHY -eq 1 ]; then
|
||||||
${tools_dir}/grib_get -l abc $ECCODES_SAMPLES_PATH/GRIB2.tmpl > $tempText 2>&1
|
set +e
|
||||||
status=$?
|
${tools_dir}/grib_get -l abc $ECCODES_SAMPLES_PATH/GRIB2.tmpl > $tempText 2>&1
|
||||||
set -e
|
status=$?
|
||||||
[ $status -ne 0 ]
|
set -e
|
||||||
grep -q "Wrong latitude value" $tempText
|
[ $status -ne 0 ]
|
||||||
|
grep -q "Wrong latitude value" $tempText
|
||||||
|
|
||||||
set +e
|
set +e
|
||||||
${tools_dir}/grib_get -s Nj=MISSING -l 0,0,1 $ECCODES_SAMPLES_PATH/reduced_ll_sfc_grib1.tmpl > $tempText 2>&1
|
${tools_dir}/grib_get -s Nj=MISSING -l 0,0,1 $ECCODES_SAMPLES_PATH/reduced_ll_sfc_grib1.tmpl > $tempText 2>&1
|
||||||
status=$?
|
status=$?
|
||||||
set -e
|
set -e
|
||||||
[ $status -ne 0 ]
|
[ $status -ne 0 ]
|
||||||
grep -q "Key Nj cannot be 'missing'" $tempText
|
grep -q "Key Nj cannot be 'missing'" $tempText
|
||||||
|
|
||||||
set +e
|
set +e
|
||||||
${tools_dir}/grib_get -s Nj=0 -l 0,0,1 $ECCODES_SAMPLES_PATH/reduced_ll_sfc_grib1.tmpl > $tempText 2>&1
|
${tools_dir}/grib_get -s Nj=0 -l 0,0,1 $ECCODES_SAMPLES_PATH/reduced_ll_sfc_grib1.tmpl > $tempText 2>&1
|
||||||
status=$?
|
status=$?
|
||||||
set -e
|
set -e
|
||||||
[ $status -ne 0 ]
|
[ $status -ne 0 ]
|
||||||
grep -q "Key Nj cannot be 0" $tempText
|
grep -q "Key Nj cannot be 0" $tempText
|
||||||
|
|
||||||
|
set +e
|
||||||
|
${tools_dir}/grib_get -l 0,0,5 $ECCODES_SAMPLES_PATH/reduced_ll_sfc_grib2.tmpl > $tempText 2>&1
|
||||||
|
status=$?
|
||||||
|
set -e
|
||||||
|
[ $status -ne 0 ]
|
||||||
|
grep -q "Wrong mode given" $tempText
|
||||||
|
|
||||||
set +e
|
set +e
|
||||||
${tools_dir}/grib_get -l 0,0,5 $ECCODES_SAMPLES_PATH/reduced_ll_sfc_grib2.tmpl > $tempText 2>&1
|
${tools_dir}/grib_get -l 0,0,1,nonexistingmask $ECCODES_SAMPLES_PATH/reduced_ll_sfc_grib1.tmpl > $tempText 2>&1
|
||||||
status=$?
|
status=$?
|
||||||
set -e
|
set -e
|
||||||
[ $status -ne 0 ]
|
[ $status -ne 0 ]
|
||||||
grep -q "Wrong mode given" $tempText
|
cat $tempText
|
||||||
|
grep -q "unable to open mask file" $tempText
|
||||||
|
fi
|
||||||
set +e
|
|
||||||
${tools_dir}/grib_get -l 0,0,1,nonexistingmask $ECCODES_SAMPLES_PATH/reduced_ll_sfc_grib1.tmpl > $tempText 2>&1
|
|
||||||
status=$?
|
|
||||||
set -e
|
|
||||||
[ $status -ne 0 ]
|
|
||||||
cat $tempText
|
|
||||||
grep -q "unable to open mask file" $tempText
|
|
||||||
|
|
||||||
|
|
||||||
# ------------------------
|
# ------------------------
|
||||||
# Unreadable message
|
# Unreadable message
|
||||||
|
|
|
@ -76,14 +76,15 @@ set -e
|
||||||
[ $status -ne 0 ]
|
[ $status -ne 0 ]
|
||||||
grep -q "Invalid pl array: entry at index=3 is zero" $tempText
|
grep -q "Invalid pl array: entry at index=3 is zero" $tempText
|
||||||
|
|
||||||
${tools_dir}/grib_filter -o $tempGrib $tempFilt $sample1
|
if [ $HAVE_GEOGRAPHY -eq 1 ]; then
|
||||||
set +e
|
${tools_dir}/grib_filter -o $tempGrib $tempFilt $sample1
|
||||||
${tools_dir}/grib_get -l 0,0 $tempGrib > $tempText 2>&1
|
set +e
|
||||||
status=$?
|
${tools_dir}/grib_get -l 0,0 $tempGrib > $tempText 2>&1
|
||||||
set -e
|
status=$?
|
||||||
[ $status -ne 0 ]
|
set -e
|
||||||
grep -q "Invalid pl array: entry at index=3 is zero" $tempText
|
[ $status -ne 0 ]
|
||||||
|
grep -q "Invalid pl array: entry at index=3 is zero" $tempText
|
||||||
|
fi
|
||||||
|
|
||||||
# Clean up
|
# Clean up
|
||||||
rm -f $tempGrib $tempText $tempFilt
|
rm -f $tempGrib $tempText $tempFilt
|
||||||
|
|
|
@ -67,12 +67,15 @@ cat > $tempFilt <<EOF
|
||||||
write;
|
write;
|
||||||
EOF
|
EOF
|
||||||
${tools_dir}/grib_filter -o $tempGrib $tempFilt $ECCODES_SAMPLES_PATH/GRIB2.tmpl
|
${tools_dir}/grib_filter -o $tempGrib $tempFilt $ECCODES_SAMPLES_PATH/GRIB2.tmpl
|
||||||
set +e
|
|
||||||
${tools_dir}/grib_ls -l 0,0 $tempGrib > $tempText 2>&1
|
if [ $HAVE_GEOGRAPHY -eq 1 ]; then
|
||||||
status=$?
|
set +e
|
||||||
set -e
|
${tools_dir}/grib_ls -l 0,0 $tempGrib > $tempText 2>&1
|
||||||
[ $status -ne 0 ]
|
status=$?
|
||||||
grep -q "Nearest neighbour functionality is not supported for grid: Variable resolution latitude/longitude" $tempText
|
set -e
|
||||||
|
[ $status -ne 0 ]
|
||||||
|
grep -q "Nearest neighbour functionality is not supported for grid: Variable resolution latitude/longitude" $tempText
|
||||||
|
fi
|
||||||
|
|
||||||
# Check the keys isSpectral and isGridded
|
# Check the keys isSpectral and isGridded
|
||||||
# ----------------------------------------
|
# ----------------------------------------
|
||||||
|
|
Loading…
Reference in New Issue