mirror of https://github.com/ecmwf/eccodes.git
Examples: comments/err msgs
This commit is contained in:
parent
b4a6bfc920
commit
d4f030225a
|
@ -110,15 +110,15 @@ int main(int argc, char* argv[])
|
||||||
codes_index_select_string(index, "shortName", shortName[i]);
|
codes_index_select_string(index, "shortName", shortName[i]);
|
||||||
|
|
||||||
for (l = 0; l < levelSize; l++) {
|
for (l = 0; l < levelSize; l++) {
|
||||||
/* select the GRIB with level=levels[i] */
|
/* select the GRIB with level=levels[l] */
|
||||||
codes_index_select_long(index, "level", levels[l]);
|
codes_index_select_long(index, "level", levels[l]);
|
||||||
|
|
||||||
for (j = 0; j < numberSize; j++) {
|
for (j = 0; j < numberSize; j++) {
|
||||||
/* select the GRIB with number=numbers[i] */
|
/* select the GRIB with number=numbers[j] */
|
||||||
codes_index_select_long(index, "number", numbers[j]);
|
codes_index_select_long(index, "number", numbers[j]);
|
||||||
|
|
||||||
for (k = 0; k < stepSize; k++) {
|
for (k = 0; k < stepSize; k++) {
|
||||||
/* select the GRIB with step=steps[i] */
|
/* select the GRIB with step=steps[k] */
|
||||||
codes_index_select_long(index, "step", steps[k]);
|
codes_index_select_long(index, "step", steps[k]);
|
||||||
|
|
||||||
/* create a new codes_handle from the index with the constraints
|
/* create a new codes_handle from the index with the constraints
|
||||||
|
@ -128,7 +128,7 @@ int main(int argc, char* argv[])
|
||||||
while ((h = codes_handle_new_from_index(index, &ret)) != NULL) {
|
while ((h = codes_handle_new_from_index(index, &ret)) != NULL) {
|
||||||
count++;
|
count++;
|
||||||
if (ret) {
|
if (ret) {
|
||||||
fprintf(stderr, "Error: %d\n", ret);
|
fprintf(stderr, "Error: %s\n", codes_get_error_message(ret));
|
||||||
exit(ret);
|
exit(ret);
|
||||||
}
|
}
|
||||||
lenshortName = 200;
|
lenshortName = 200;
|
||||||
|
|
|
@ -102,15 +102,15 @@ int main(int argc, char* argv[])
|
||||||
grib_index_select_string(index, "shortName", shortNames[i]);
|
grib_index_select_string(index, "shortName", shortNames[i]);
|
||||||
|
|
||||||
for (l = 0; l < levelSize; l++) {
|
for (l = 0; l < levelSize; l++) {
|
||||||
/* select the GRIB with level=levels[i] */
|
/* select the GRIB with level=levels[l] */
|
||||||
grib_index_select_long(index, "level", levels[l]);
|
grib_index_select_long(index, "level", levels[l]);
|
||||||
|
|
||||||
for (j = 0; j < numberSize; j++) {
|
for (j = 0; j < numberSize; j++) {
|
||||||
/* select the GRIB with number=numbers[i] */
|
/* select the GRIB with number=numbers[j] */
|
||||||
grib_index_select_long(index, "number", numbers[j]);
|
grib_index_select_long(index, "number", numbers[j]);
|
||||||
|
|
||||||
for (k = 0; k < stepSize; k++) {
|
for (k = 0; k < stepSize; k++) {
|
||||||
/* select the GRIB with step=steps[i] */
|
/* select the GRIB with step=steps[k] */
|
||||||
grib_index_select_long(index, "step", steps[k]);
|
grib_index_select_long(index, "step", steps[k]);
|
||||||
|
|
||||||
/* create a new grib_handle from the index with the constraints
|
/* create a new grib_handle from the index with the constraints
|
||||||
|
@ -120,7 +120,7 @@ int main(int argc, char* argv[])
|
||||||
while ((h = grib_handle_new_from_index(index, &ret)) != NULL) {
|
while ((h = grib_handle_new_from_index(index, &ret)) != NULL) {
|
||||||
count++;
|
count++;
|
||||||
if (ret) {
|
if (ret) {
|
||||||
printf("error: %d\n", ret);
|
printf("error: %s\n", grib_get_error_message(ret));
|
||||||
exit(ret);
|
exit(ret);
|
||||||
}
|
}
|
||||||
lenShortName = 200;
|
lenShortName = 200;
|
||||||
|
|
Loading…
Reference in New Issue