2013-03-25 12:04:10 +00:00
|
|
|
/*
|
2018-01-02 11:31:02 +00:00
|
|
|
* Copyright 2005-2018 ECMWF.
|
2013-03-25 12:04:10 +00:00
|
|
|
*
|
|
|
|
* This software is licensed under the terms of the Apache Licence Version 2.0
|
|
|
|
* which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
|
|
|
|
*
|
|
|
|
* In applying this licence, ECMWF does not waive the privileges and immunities granted to it by
|
|
|
|
* virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* C Implementation: grib_get_data
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "grib_tools.h"
|
|
|
|
|
|
|
|
static void print_key_values(grib_values* values,int values_count);
|
|
|
|
static grib_values* get_key_values(grib_runtime_options* options,grib_handle* h);
|
|
|
|
|
|
|
|
grib_option grib_options[]={
|
|
|
|
/* {id, args, help}, on, command_line, value */
|
|
|
|
{"q",0,0,1,0,0},
|
|
|
|
{"S",0,0,1,0,0},
|
|
|
|
{"M",0,0,0,1,0},
|
|
|
|
{"m:","missingValue","\n\t\tThe missing value is given through this option."
|
|
|
|
"\n\t\tAny string is allowed and it is printed in place of the missing"
|
|
|
|
"\n\t\tvalues. Default is to skip the missing values.\n",0,1,0},
|
|
|
|
{"p:",0,0,0,1,0},
|
|
|
|
{"F:","format","\n\t\tC style format for values. Default is \"%.10e\"\n",0,1,0},
|
|
|
|
{"w:",0,0,0,1,0},
|
|
|
|
{"f",0,0,0,1,0},
|
|
|
|
{"G",0,0,0,1,0},
|
|
|
|
{"7",0,0,0,1,0},
|
2013-06-17 16:53:16 +00:00
|
|
|
{"X:",0,0,0,1,0},
|
2013-03-25 12:04:10 +00:00
|
|
|
{"V",0,0,0,1,0}
|
|
|
|
};
|
|
|
|
|
2018-08-07 12:50:41 +00:00
|
|
|
const char* grib_tool_description="Print a latitude, longitude, data values list.\n"
|
2016-06-30 08:58:22 +00:00
|
|
|
"\tNote: Rotated grids are first unrotated";
|
2018-08-07 12:50:41 +00:00
|
|
|
const char* grib_tool_name="grib_get_data";
|
|
|
|
const char* grib_tool_usage="[options] grib_file grib_file ...";
|
2013-03-25 12:04:10 +00:00
|
|
|
|
|
|
|
extern FILE* dump_file;
|
|
|
|
|
|
|
|
int grib_options_count=sizeof(grib_options)/sizeof(grib_option);
|
|
|
|
|
2014-04-14 13:41:53 +00:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
return grib_tool(argc,argv);
|
|
|
|
}
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2014-04-14 13:41:53 +00:00
|
|
|
int grib_tool_before_getopt(grib_runtime_options* options)
|
|
|
|
{
|
2014-01-10 14:07:02 +00:00
|
|
|
return 0;
|
2013-03-25 12:04:10 +00:00
|
|
|
}
|
|
|
|
|
2014-04-14 13:41:53 +00:00
|
|
|
int grib_tool_init(grib_runtime_options* options)
|
|
|
|
{
|
2014-01-10 14:07:02 +00:00
|
|
|
return 0;
|
2013-03-25 12:04:10 +00:00
|
|
|
}
|
|
|
|
|
2014-04-14 13:41:53 +00:00
|
|
|
int grib_tool_new_filename_action(grib_runtime_options* options,const char* file)
|
|
|
|
{
|
2014-01-10 14:07:02 +00:00
|
|
|
return 0;
|
2013-03-25 12:04:10 +00:00
|
|
|
}
|
|
|
|
|
2014-04-14 13:41:53 +00:00
|
|
|
int grib_tool_new_file_action(grib_runtime_options* options,grib_tools_file* file)
|
|
|
|
{
|
2018-09-07 16:12:24 +00:00
|
|
|
exit_if_input_is_directory(grib_tool_name, file->name);
|
2014-01-10 14:07:02 +00:00
|
|
|
return 0;
|
2013-03-25 12:04:10 +00:00
|
|
|
}
|
|
|
|
|
2014-04-14 13:41:53 +00:00
|
|
|
int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h)
|
|
|
|
{
|
2014-01-10 14:07:02 +00:00
|
|
|
int err=0;
|
2014-10-02 16:23:43 +00:00
|
|
|
|
2017-07-27 15:57:03 +00:00
|
|
|
double missingValue = 9999;
|
2014-01-10 14:07:02 +00:00
|
|
|
int skip_missing=1;
|
|
|
|
char *missing_string=NULL;
|
|
|
|
int i=0;
|
|
|
|
grib_values* values=NULL;
|
|
|
|
grib_iterator* iter = NULL;
|
|
|
|
char* format=NULL;
|
|
|
|
char* default_format="%.10e";
|
|
|
|
int print_keys=grib_options_on("p:");
|
|
|
|
long numberOfPoints=0;
|
2014-04-14 13:41:53 +00:00
|
|
|
long bitmapPresent = 0;
|
|
|
|
long *bitmap = NULL; /* bitmap array */
|
|
|
|
size_t bmp_len = 0;
|
2014-01-10 14:07:02 +00:00
|
|
|
double *data_values=0,*lats=0,*lons=0;
|
|
|
|
int n = 0;
|
2017-09-01 16:52:05 +00:00
|
|
|
size_t size=0, num_bytes=0;
|
2017-08-08 15:57:41 +00:00
|
|
|
long hasMissingValues = 0;
|
2017-07-27 15:57:03 +00:00
|
|
|
|
|
|
|
if (grib_options_on("m:")) {
|
|
|
|
/* User wants to see missing values */
|
|
|
|
char* theEnd = NULL;
|
|
|
|
double mval=0;
|
|
|
|
char* kmiss=grib_options_get_option("m:");
|
|
|
|
char* p = kmiss;
|
|
|
|
skip_missing=0;
|
|
|
|
while (*p != ':' && *p != '\0') p++;
|
|
|
|
if (*p == ':' && *(p+1) != '\0') {
|
|
|
|
*p='\0';
|
|
|
|
missing_string=strdup(p+1);
|
|
|
|
} else {
|
|
|
|
missing_string=strdup(kmiss);
|
|
|
|
}
|
|
|
|
mval=strtod(kmiss, &theEnd);
|
|
|
|
if (kmiss != theEnd && *theEnd == '\0')
|
|
|
|
missingValue = mval;
|
|
|
|
grib_set_double(h,"missingValue",missingValue);
|
|
|
|
/*missing_string=grib_options_get_option("m:");*/
|
|
|
|
}
|
2014-01-10 14:07:02 +00:00
|
|
|
|
|
|
|
if (grib_options_on("F:"))
|
|
|
|
format=grib_options_get_option("F:");
|
|
|
|
else
|
|
|
|
format=default_format;
|
|
|
|
|
|
|
|
if ((err=grib_get_long(h,"numberOfPoints",&numberOfPoints)) !=GRIB_SUCCESS) {
|
|
|
|
fprintf(dump_file,"ERROR: unable to get number of points\n");
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
iter=grib_iterator_new(h,0,&err);
|
|
|
|
|
2017-09-01 16:52:05 +00:00
|
|
|
num_bytes = (numberOfPoints+1)*sizeof(double);
|
2014-01-10 14:07:02 +00:00
|
|
|
data_values=(double*)calloc(numberOfPoints+1, sizeof(double));
|
|
|
|
if (!data_values) {
|
|
|
|
fprintf(dump_file, "ERROR: failed to allocate %ld bytes for data values (number of points=%ld)\n",
|
2017-09-01 16:52:05 +00:00
|
|
|
(long)num_bytes, numberOfPoints);
|
2014-01-10 14:07:02 +00:00
|
|
|
exit(GRIB_OUT_OF_MEMORY);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (iter) {
|
2014-04-14 13:41:53 +00:00
|
|
|
double *lat=0,*lon=0,*val=0;
|
2014-01-10 14:07:02 +00:00
|
|
|
lats=(double*)calloc(numberOfPoints+1,sizeof(double));
|
|
|
|
lons=(double*)calloc(numberOfPoints+1,sizeof(double));
|
|
|
|
lat=lats; lon=lons; val=data_values;
|
|
|
|
while(grib_iterator_next(iter,lat++,lon++,val++)) {}
|
|
|
|
} else if (err==GRIB_NOT_IMPLEMENTED || err==GRIB_SUCCESS){
|
|
|
|
size=numberOfPoints;
|
2016-04-07 09:53:10 +00:00
|
|
|
err = grib_get_double_array(h,"values",data_values,&size);
|
|
|
|
if (err) {
|
|
|
|
grib_context_log(h->context,GRIB_LOG_ERROR,"Cannot decode values: %s",
|
|
|
|
grib_get_error_message(err));
|
|
|
|
exit(1);
|
|
|
|
}
|
2014-01-10 14:07:02 +00:00
|
|
|
if (size!=numberOfPoints) {
|
|
|
|
if (!grib_options_on("q"))
|
|
|
|
fprintf(dump_file,"ERROR: wrong number of points %d\n",(int)numberOfPoints);
|
|
|
|
if (grib_options_on("f")) exit(1);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
grib_context_log(h->context,GRIB_LOG_ERROR,
|
|
|
|
"%s",grib_get_error_message(err));
|
|
|
|
exit(err);
|
|
|
|
}
|
|
|
|
|
2017-08-08 15:57:41 +00:00
|
|
|
/* Cater for GRIBs which have missing values but no bitmap */
|
|
|
|
/* See ECC-511 */
|
|
|
|
GRIB_CHECK(grib_get_long(h,"missingValuesPresent",&hasMissingValues),0);
|
2014-04-14 13:41:53 +00:00
|
|
|
GRIB_CHECK(grib_get_long(h,"bitmapPresent",&bitmapPresent),0);
|
|
|
|
if (bitmapPresent)
|
|
|
|
{
|
|
|
|
GRIB_CHECK(grib_get_size(h,"bitmap",&bmp_len),0);
|
2014-10-02 16:23:43 +00:00
|
|
|
bitmap = (long*)malloc(bmp_len*sizeof(long));
|
2014-04-14 13:41:53 +00:00
|
|
|
GRIB_CHECK(grib_get_long_array(h,"bitmap",bitmap,&bmp_len),0);
|
|
|
|
}
|
2014-10-02 16:23:43 +00:00
|
|
|
|
2014-01-10 14:07:02 +00:00
|
|
|
if (iter)
|
|
|
|
fprintf(dump_file,"Latitude, Longitude, ");
|
|
|
|
|
|
|
|
fprintf(dump_file,"Value");
|
|
|
|
|
|
|
|
if (print_keys)
|
|
|
|
for (i=0;i<options->print_keys_count; i++)
|
|
|
|
fprintf(dump_file,", %s",options->print_keys[i].name);
|
|
|
|
|
|
|
|
fprintf(dump_file,"\n");
|
|
|
|
|
|
|
|
if (print_keys)
|
|
|
|
values=get_key_values(options,h);
|
|
|
|
|
|
|
|
if (skip_missing==0){
|
2014-04-14 13:41:53 +00:00
|
|
|
/* Show missing values in data */
|
2014-01-10 14:07:02 +00:00
|
|
|
for (i=0;i<numberOfPoints;i++) {
|
2017-08-08 15:57:41 +00:00
|
|
|
int is_missing_val = 0;
|
|
|
|
if (hasMissingValues) {
|
|
|
|
if (bitmapPresent) is_missing_val = (bitmap[i] == 0);
|
|
|
|
else is_missing_val = (data_values[i] == missingValue);
|
2017-07-27 15:57:03 +00:00
|
|
|
}
|
2014-01-10 14:07:02 +00:00
|
|
|
if (iter) fprintf(dump_file,"%9.3f%9.3f ",lats[i],lons[i]);
|
|
|
|
|
2014-04-14 13:41:53 +00:00
|
|
|
if (is_missing_val)
|
2014-01-10 14:07:02 +00:00
|
|
|
fprintf(dump_file,"%s",missing_string);
|
|
|
|
else
|
|
|
|
fprintf(dump_file,format,data_values[i]);
|
|
|
|
|
|
|
|
if (print_keys)
|
|
|
|
print_key_values(values,options->print_keys_count);
|
|
|
|
fprintf(dump_file,"\n");
|
|
|
|
n++;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if ( skip_missing==1 ){
|
2014-04-14 13:41:53 +00:00
|
|
|
/* Skip the missing values in data */
|
2014-01-10 14:07:02 +00:00
|
|
|
for (i=0;i<numberOfPoints;i++) {
|
2017-08-08 15:57:41 +00:00
|
|
|
int is_missing_val = 0;
|
|
|
|
if (hasMissingValues) {
|
|
|
|
if (bitmapPresent) is_missing_val = (bitmap[i] == 0);
|
|
|
|
else is_missing_val = (data_values[i] == missingValue);
|
2017-07-27 15:57:03 +00:00
|
|
|
}
|
2014-04-14 13:41:53 +00:00
|
|
|
if (!is_missing_val){
|
2014-01-10 14:07:02 +00:00
|
|
|
if (iter) fprintf(dump_file,"%9.3f%9.3f ",lats[i],lons[i]);
|
|
|
|
fprintf(dump_file,format,data_values[i]);
|
|
|
|
if (print_keys)
|
|
|
|
print_key_values(values,options->print_keys_count);
|
|
|
|
fprintf(dump_file,"\n");
|
|
|
|
n++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (iter) grib_iterator_delete(iter);
|
2016-11-17 16:59:22 +00:00
|
|
|
if (bitmap) free(bitmap);
|
2014-01-10 14:07:02 +00:00
|
|
|
|
|
|
|
free(data_values);
|
2018-10-25 15:50:35 +00:00
|
|
|
free(missing_string);
|
2014-01-10 14:07:02 +00:00
|
|
|
if (iter) {
|
|
|
|
free(lats);
|
|
|
|
free(lons);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2013-03-25 12:04:10 +00:00
|
|
|
}
|
|
|
|
|
2014-04-14 13:41:53 +00:00
|
|
|
int grib_tool_skip_handle(grib_runtime_options* options, grib_handle* h)
|
|
|
|
{
|
2014-01-10 14:07:02 +00:00
|
|
|
grib_handle_delete(h);
|
|
|
|
return 0;
|
2013-03-25 12:04:10 +00:00
|
|
|
}
|
|
|
|
|
2014-04-14 13:41:53 +00:00
|
|
|
void grib_tool_print_key_values(grib_runtime_options* options,grib_handle* h)
|
|
|
|
{
|
2014-01-10 14:07:02 +00:00
|
|
|
grib_print_key_values(options,h);
|
2013-03-25 12:04:10 +00:00
|
|
|
}
|
|
|
|
|
2014-04-14 13:41:53 +00:00
|
|
|
int grib_tool_finalise_action(grib_runtime_options* options)
|
|
|
|
{
|
2014-01-10 14:07:02 +00:00
|
|
|
return 0;
|
2013-03-25 12:04:10 +00:00
|
|
|
}
|
|
|
|
|
2014-04-14 13:41:53 +00:00
|
|
|
static void print_key_values(grib_values* values,int values_count)
|
|
|
|
{
|
2014-01-10 14:07:02 +00:00
|
|
|
int i=0;
|
|
|
|
for (i=0; i<values_count; i++) {
|
|
|
|
fprintf(dump_file," %s",values[i].string_value);
|
|
|
|
}
|
2013-03-25 12:04:10 +00:00
|
|
|
}
|
|
|
|
|
2014-04-14 13:41:53 +00:00
|
|
|
static grib_values* get_key_values(grib_runtime_options* options,grib_handle* h)
|
|
|
|
{
|
2014-01-10 14:07:02 +00:00
|
|
|
int i=0;
|
|
|
|
int ret=0;
|
|
|
|
char value[MAX_STRING_LEN]={0,};
|
|
|
|
char* notfound="not found";
|
|
|
|
|
|
|
|
for (i=0;i<options->print_keys_count;i++) {
|
|
|
|
size_t len=MAX_STRING_LEN;
|
|
|
|
ret=GRIB_SUCCESS;
|
|
|
|
|
|
|
|
if (grib_is_missing(h,options->print_keys[i].name,&ret) && ret==GRIB_SUCCESS) {
|
|
|
|
options->print_keys[i].type=GRIB_TYPE_MISSING;
|
|
|
|
sprintf(value,"MISSING");
|
|
|
|
|
|
|
|
} else if ( ret != GRIB_NOT_FOUND ){
|
|
|
|
if (options->print_keys[i].type == GRIB_TYPE_UNDEFINED) {
|
|
|
|
grib_get_native_type(h,options->print_keys[i].name,&(options->print_keys[i].type));
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (options->print_keys[i].type) {
|
|
|
|
case GRIB_TYPE_STRING:
|
|
|
|
ret=grib_get_string( h,options->print_keys[i].name,value,&len);
|
|
|
|
break;
|
|
|
|
case GRIB_TYPE_DOUBLE:
|
|
|
|
ret=grib_get_double( h,options->print_keys[i].name,
|
|
|
|
&(options->print_keys[i].double_value));
|
|
|
|
sprintf(value,"%g",options->print_keys[i].double_value);
|
|
|
|
break;
|
|
|
|
case GRIB_TYPE_LONG:
|
|
|
|
ret=grib_get_long( h,options->print_keys[i].name,
|
|
|
|
&(options->print_keys[i].long_value));
|
|
|
|
sprintf(value,"%ld",(long)options->print_keys[i].long_value);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(dump_file,"invalid type for %s\n",options->print_keys[i].name);
|
|
|
|
exit(1);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ret != GRIB_SUCCESS) {
|
|
|
|
if (options->fail) GRIB_CHECK_NOLINE(ret,options->print_keys[i].name);
|
|
|
|
if (ret == GRIB_NOT_FOUND) strcpy(value,notfound);
|
|
|
|
else {
|
|
|
|
fprintf(dump_file,"%s %s\n",grib_get_error_message(ret),options->print_keys[i].name);
|
|
|
|
exit(ret);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
options->print_keys[i].string_value=strdup(value);
|
|
|
|
}
|
|
|
|
return options->print_keys;
|
2013-03-25 12:04:10 +00:00
|
|
|
|
|
|
|
}
|
2015-05-01 09:04:58 +00:00
|
|
|
|
2016-08-30 12:45:02 +00:00
|
|
|
int grib_no_handle_action(grib_runtime_options* options, int err)
|
2016-04-07 09:53:10 +00:00
|
|
|
{
|
|
|
|
fprintf(dump_file,"\t\t\"ERROR: unreadable message\"\n");
|
|
|
|
return 0;
|
2015-05-01 09:04:58 +00:00
|
|
|
}
|