mirror of https://github.com/ecmwf/eccodes.git
ECC-1197: grib_get_data: Words on the first line should be separated by spaces not commas
This commit is contained in:
parent
7bb0b83ca2
commit
2b98e8a40d
|
@ -1,4 +1,4 @@
|
|||
Latitude, Longitude, Value
|
||||
Latitude Longitude Value
|
||||
20.000 24.000 5
|
||||
20.000 23.000 4
|
||||
20.000 22.000 3
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Latitude, Longitude, Value
|
||||
Latitude Longitude Value
|
||||
20.000 24.000 5
|
||||
20.000 23.000 4
|
||||
20.000 22.000 3
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Latitude, Longitude, Value
|
||||
Latitude Longitude Value
|
||||
20.000 27.000 8
|
||||
20.000 26.000 7
|
||||
20.000 25.000 6
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Latitude, Longitude, Value
|
||||
Latitude Longitude Value
|
||||
20.000 27.000 8
|
||||
20.000 26.000 7
|
||||
20.000 25.000 6
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Latitude, Longitude, Value
|
||||
Latitude Longitude Value
|
||||
59.143 131.824 5
|
||||
59.882 132.969 4
|
||||
60.606 134.175 3
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Latitude, Longitude, Value
|
||||
Latitude Longitude Value
|
||||
59.143 131.824 5
|
||||
59.882 132.969 4
|
||||
60.606 134.175 3
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Latitude, Longitude, Value
|
||||
Latitude Longitude Value
|
||||
56.853 128.720 8
|
||||
57.628 129.702 7
|
||||
58.392 130.736 6
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Latitude, Longitude, Value
|
||||
Latitude Longitude Value
|
||||
56.853 128.720 8
|
||||
57.628 129.702 7
|
||||
58.392 130.736 6
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Latitude, Longitude, Value
|
||||
Latitude Longitude Value
|
||||
17.000 20.000 16
|
||||
17.000 21.000 17
|
||||
17.000 22.000 18
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Latitude, Longitude, Value
|
||||
Latitude Longitude Value
|
||||
14.000 20.000 31
|
||||
14.000 21.000 32
|
||||
14.000 22.000 33
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Latitude, Longitude, Value
|
||||
Latitude Longitude Value
|
||||
17.000 20.000 25
|
||||
17.000 21.000 26
|
||||
17.000 22.000 27
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Latitude, Longitude, Value
|
||||
Latitude Longitude Value
|
||||
14.000 20.000 49
|
||||
14.000 21.000 50
|
||||
14.000 22.000 51
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Latitude, Longitude, Value
|
||||
Latitude Longitude Value
|
||||
63.979 131.793 16
|
||||
63.226 130.468 17
|
||||
62.458 129.219 18
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Latitude, Longitude, Value
|
||||
Latitude Longitude Value
|
||||
65.752 126.092 31
|
||||
64.938 124.828 32
|
||||
64.111 123.647 33
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Latitude, Longitude, Value
|
||||
Latitude Longitude Value
|
||||
63.979 131.793 25
|
||||
63.226 130.468 26
|
||||
62.458 129.219 27
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Latitude, Longitude, Value
|
||||
Latitude Longitude Value
|
||||
65.752 126.092 49
|
||||
64.938 124.828 50
|
||||
64.111 123.647 51
|
||||
|
|
|
@ -23,7 +23,7 @@ files="reduced_latlon_surface.grib1 \
|
|||
|
||||
for f in $files; do
|
||||
file=${data_dir}/$f
|
||||
# Must exclude the first line of grib_get_data which is "Latitude, Longitude, Value"
|
||||
# Must exclude the first line of grib_get_data which is "Latitude Longitude Value"
|
||||
iterator_count=`${tools_dir}/grib_get_data -m 9999:missing -f -p centre -F "%g" -w count=1 $file | grep -v Lat |wc -l `
|
||||
numberOfPoints=`${tools_dir}/grib_get -w count=1 -p numberOfPoints $file`
|
||||
[ $numberOfPoints = ${iterator_count} ]
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Latitude, Longitude, Value
|
||||
Latitude Longitude Value
|
||||
67.575 326.506 2.0000000000e+00
|
||||
67.601 326.601 2.0000000000e+00
|
||||
67.626 326.696 2.0000000000e+00
|
||||
|
|
|
@ -188,7 +188,7 @@ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h)
|
|||
}
|
||||
|
||||
if (iter)
|
||||
fprintf(dump_file, "Latitude, Longitude, ");
|
||||
fprintf(dump_file, "Latitude Longitude ");
|
||||
|
||||
fprintf(dump_file, "Value");
|
||||
|
||||
|
|
Loading…
Reference in New Issue