Skip to content

Commit

Permalink
2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
svniemeijer committed Nov 4, 2015
1 parent 74802ae commit 29232ec
Show file tree
Hide file tree
Showing 10 changed files with 26 additions and 15 deletions.
5 changes: 5 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2.0.1 2011-05-17
~~~~~~~~~~~~~~~~

* Fixed issue that prevented correctly opening GRIB files.

2.0 2011-04-20
~~~~~~~~~~~~~~

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
project(CODA)

set(VERSION 2.0)
set(VERSION 2.0.1)
set(CODA_VERSION \"${VERSION}\")

# General setup
Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Copyright (C) 2007-2011 S[&]T, The Netherlands

CODA 2.0 Release Notes
CODA 2.0.1 Release Notes


CODA is the Common Data Access framework that allows reading of scientific data
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# autoconf file for CODA
AC_INIT([CODA],[2.0])
AC_INIT([CODA],[2.0.1])
AC_CONFIG_AUX_DIR([.])
AM_INIT_AUTOMAKE(foreign 1.8.3 -Wall)

Expand Down Expand Up @@ -98,7 +98,7 @@ AC_CONFIG_FILES([win32/coda.iss win32/setup.py])
# 6. If any interfaces have been removed or changed since the last public
# release, then set age to 0.
LIBCODA_CURRENT=5
LIBCODA_REVISION=0
LIBCODA_REVISION=1
LIBCODA_AGE=0
AC_SUBST(LIBCODA_CURRENT)
AC_SUBST(LIBCODA_REVISION)
Expand Down
5 changes: 1 addition & 4 deletions doc/html/codadef/codadef-expressions.html
Original file line number Diff line number Diff line change
Expand Up @@ -668,13 +668,9 @@ <h2>formal definition</h2>
intexpr, '^', floatexpr |
'(', floatexpr, ')' |
'abs', '(', floatexpr, ')' |
'abs', '(', intexpr, ')' |
'ceil', '(', floatexpr, ')' |
'ceil', '(', intexpr, ')' |
'floor', '(', floatexpr, ')' |
'floor', '(', intexpr, ')' |
'round', '(', floatexpr, ')' |
'round', '(', intexpr, ')' |
'max', '(', floatexpr, ',', floatexpr, ')' |
'max', '(', floatexpr, ',', intexpr, ')' |
'max', '(', intexpr, ',', floatexpr, ')' |
Expand Down Expand Up @@ -702,6 +698,7 @@ <h2>formal definition</h2>
'add', '(', node, ',', stringexpr, ')' |
'regex', '(', stringexpr, ',', stringexpr, ',', intexpr ')' |
'regex', '(', stringexpr, ',', stringexpr, ',', stringexpr ')' |
'productformat', '(', ')' |
'productclass', '(', ')' |
'producttype', '(', ')' |
'filename', '(', ')' |
Expand Down
2 changes: 1 addition & 1 deletion libcoda/coda-hdf4.c
Original file line number Diff line number Diff line change
Expand Up @@ -556,6 +556,6 @@ void coda_hdf4_add_error_message(void)

if (error != 0)
{
coda_add_error_message(HEstring(error));
coda_add_error_message("[HDF4] %s", HEstring(error));
}
}
6 changes: 3 additions & 3 deletions libcoda/coda-hdf5.c
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,9 @@ static herr_t add_error_message(int n, H5E_error_t *err_desc, void *client_data)
if (n == 0)
{
/* we only display the deepest error in the stack */
coda_add_error_message("%s(): %s (major=\"%s\", minor=\"%s\") (%s:%u)", err_desc->func_name, err_desc->desc,
H5Eget_major(err_desc->maj_num), H5Eget_minor(err_desc->min_num), err_desc->file_name,
err_desc->line);
coda_add_error_message("[HDF5] %s(): %s (major=\"%s\", minor=\"%s\") (%s:%u)", err_desc->func_name,
err_desc->desc, H5Eget_major(err_desc->maj_num), H5Eget_minor(err_desc->min_num),
err_desc->file_name, err_desc->line);
}

return 0;
Expand Down
1 change: 1 addition & 0 deletions libcoda/coda-product.c
Original file line number Diff line number Diff line change
Expand Up @@ -481,6 +481,7 @@ LIBCODA_API int coda_open(const char *filename, coda_product **product)
{
return -1;
}
break;
case coda_format_rinex:
if (coda_rinex_open(filename, file_size, &product_file) != 0)
{
Expand Down
7 changes: 6 additions & 1 deletion tools/codadd/codadd-doc.c
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,11 @@ static void generate_html_attributes(const coda_type *type, int *first_attribute

coda_type_get_num_record_fields(type, &num_fields);

if (!*first_attribute)
{
fi_printf("<br />");
}

for (i = 0; i < num_fields; i++)
{
coda_type *field_type;
Expand All @@ -278,7 +283,7 @@ static void generate_html_attributes(const coda_type *type, int *first_attribute
{
if (!*first_attribute)
{
fi_printf("<br /><br />\n");
fi_printf("<br />\n");
}
else
{
Expand Down
7 changes: 5 additions & 2 deletions tools/codadump/codadump-debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -559,9 +559,12 @@ static void print_data(coda_cursor *cursor)
{
if (coda_time_to_string(data, str) != 0)
{
handle_coda_error();
ff_printf(" {--invalid time value--}\n");
}
else
{
ff_printf(" %s\n", str);
}
ff_printf(" %s\n", str);
}
}
break;
Expand Down

0 comments on commit 29232ec

Please sign in to comment.