<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Overview</title><link>https://sourceforge.net/p/wreport/home/Overview/</link><description>Recent changes to Overview</description><atom:link href="https://sourceforge.net/p/wreport/home/Overview/feed" rel="self"/><language>en</language><lastBuildDate>Mon, 13 Aug 2012 13:22:21 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/wreport/home/Overview/feed" rel="self" type="application/rss+xml"/><item><title>WikiPage Overview modified by Davide Cesari</title><link>https://sourceforge.net/p/wreport/home/Overview/</link><description>&lt;pre&gt;--- v9
+++ v10
@@ -5,7 +5,7 @@
 * low level d/encoding 
 * physically-based data model: unique, high-level, physically-based data model (lon, lat, time, level, parameter, etc.)
 
-## Provided by wreport
+## Features provided by wreport
 
 * C++ Library for encoding-decoding BUFR and CREX messages at low level 
 * It includes a simple command line BUFR dumper 
@@ -13,7 +13,7 @@
 * It cannot convert BUFR between different templates 
 * It can use tables in standard XML format as distributed by WMO (easy maintenance) 
 
-### Core library features
+##### Core library features
 
  * BUFR table loading and querying.
  * An abstraction for BUFR variables, storing values with the correct number of significant digits (no artifacts introduced by floats or doubles), and with access to metadata (description, measurement unit, significant digits...) for each variable.
@@ -21,7 +21,7 @@
  * Variables can be annotated using other variables, to store values that reference other values, such as quality control statistics or substituted values.
  * Script to download and acquire the latest BUFR and CREX tables from WMO. 
 
-### BUFR decoder features
+##### BUFR decoder features
 
 The decoder supports BUFR editions 2, 3 and 4, both uncompressed and compressed.
 
@@ -37,39 +37,40 @@
  * 23 substituted values matched via data present bitmap
  * 24 first order statistical values matched via data present bitmap
 
-### BUFR encoder features
+##### BUFR encoder features
 
 All features supported by the decoder are supported by the encoder, and tested via decode/reencode/decode runs.
 
 The encoder however does not yet support compression of multisubset data sections.
 
-### CREX decoder features
+##### CREX decoder features
 
 The decoder supports CREX edition 1.
 
 B, R and D opcodes are supported. Some C modifiers may be supported, but are untested due to lack of real-world samples.
 
-### CREX encoder features
+##### CREX encoder features
 
 All features supported by the decoder are supported by the encoder, and tested via decode/reencode/decode runs.
 
-### Command line tools
+##### Command line tools
 
 wrep: a tool to print the contents of BUFR and CREX messages.
 
 
-## Provided by DB-All.e
+## Features provided by DB-All.e
 
-It can import observations from various sources into a unique, high-level, physically-based data model (lon, lat, time, level, parameter, etc.), where they can be manipulated at will and exported back to BUFR or CREX messages.
+DB-All.e can import observations from various sources into a unique, high-level, physically-based data model (lon, lat, time, level, parameter, etc.), where they can be manipulated at will and exported back to BUFR or CREX messages. In order to take advantage of the full capabilities of DB-All.e, the availability of a relational database, such as MySQL or sqlite, is required, however many elementary operations, namely the operations that process one message at a time, can be performed on data in plain files, thus not requiring to setup a database and link with a database library.
 
  * It uses the Wreport library for BUFR and CREX encoding and decoding.
  * It has a GUI for quickly navigating into observation datasets.
- * It import data from other formats, such as Binary COSMO AOF (ro) and Text with predefined csv structure (rw).
+ * It can import data from other formats, such as Binary COSMO AOF (ro) and Text with predefined csv structure (rw).
  * It understands BUFR with different templates (e.g. those from MARS at ECMWF and some of the new WMO GTS templates).
- * Using command line tools can convert from those formats and write BUFR in  WMO/GTS template.
+ * Using command line tools it can convert from those formats and write BUFR in WMO/GTS template.
+ * It can be interfaced to different database architectures for DB operations, e.g. MySQL, Sqlite, Oracle.
  * It has a Fortran interface.
 
-### Command line tools
+##### Command line tools
 
  * dbatbl: a query tool for BUFR tables
  * dbamsg: a tool to manipulate BFUR and CREX messages.
@@ -83,7 +84,7 @@
     * database maintenance: create, dump, reset.
     * import and export of data from/to BUFR and CREX messages.
 
-### Fortran API
+##### Fortran API
 
  * Works with physically interpreted data, either in BUFR, CREX or AOF messages or in the DB-All.e database.
  * Simple query syntax based on:
@@ -91,7 +92,7 @@
     * extra constraints based on ground station information or variable attributes (e.g. only data from stations higher than 1000m, or only values with confidence less than 50%).
  * Comprehensive documentation.
 
-### Python bindings
+##### Python bindings
 
 Various parts of the C++ API are also exported as a Python module, which provides low-level message I/O and full database manipulation.
 
@@ -100,15 +101,13 @@
  * volnd: exports physical data from a DB-All.e database into [NumPy](http://numpy.scipy.org/) multidimensional [Masked Arrays](http://docs.scipy.org/doc/numpy/reference/maskedarray.html).
  * rconvert: exports physical data from a DB-All.e database into multidimensional arrays for [GNU R](http://www.r-project.org/).
 
-### Graphical interface
+##### Graphical interface
 
 **provami** is a graphical interface based on [wxPython](http://www.wxpython.org/) that can be used to browse the database, incrementally build queries, and perform import, export and simple manipulation.
 
 On top of BUFR, CREX and CSV, provami can also export GNU R datasets.
 
 
-## Provided by bufr2netcdf
+## Features provided by bufr2netcdf
 
-bufr2netcdf is a tool for decoding BUFR reports and creating input files for COSMO model data assimilation in NetCDF format, for more information see the page [CosmoNetcdfConversion].
-
-The natural source of observed data for COSMO model should be BUFR following a well-defined template (e.g. WMO reports). DB-All.e's **dbamsg** can be used to convert other kinds of input messages to their appropriate templates (see [TemplateConversion]).
+bufr2netcdf is a tool for converting BUFR reports in the NetCDF format required for [COSMO model](http://www.cosmo-model.org/) data assimilation. The input for bufr2netcdf is BUFR format following a well-defined template (e.g. WMO reports). For more information see the page [CosmoNetcdfConversion]. If the input BUFR is not in the required template, DB-All.e **dbamsg** tool can be used to convert some kinds of input messages to their appropriate templates (see [TemplateConversion]) before converting the BUFR with bufr2netcdf.
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Davide Cesari</dc:creator><pubDate>Mon, 13 Aug 2012 13:22:21 -0000</pubDate><guid>https://sourceforge.net4542282bce74030da3975db8d87d5a7967661e93</guid></item><item><title>WikiPage Overview modified by Davide Cesari</title><link>https://sourceforge.net/p/wreport/home/Overview/</link><description>&lt;pre&gt;--- v8 
+++ v9 
@@ -109,8 +109,6 @@
 
 ## Provided by bufr2netcdf
 
-bufr2netcdf is a tool for decoding BUFR reports and creating input files for COSMO model assimilation. 
-
-The COSMO model requires observations in NetCDF format, and the previous AOF format is now considered obsolete.
-
-The natural source of observed data for COSMO model should be BUFR following a well-defined template (e.g. WMO reports). DB-All.e's **dbamsg** can be used to convert other kinds of input messages to ther appropriate templates (see [TemplateConversion]).
+bufr2netcdf is a tool for decoding BUFR reports and creating input files for COSMO model data assimilation in NetCDF format, for more information see the page [CosmoNetcdfConversion].
+
+The natural source of observed data for COSMO model should be BUFR following a well-defined template (e.g. WMO reports). DB-All.e's **dbamsg** can be used to convert other kinds of input messages to their appropriate templates (see [TemplateConversion]).
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Davide Cesari</dc:creator><pubDate>Mon, 10 Oct 2011 14:14:06 -0000</pubDate><guid>https://sourceforge.net665f0abd5895edbb01f5de6e61d610b327f57d12</guid></item><item><title>WikiPage Overview modified by Enrico Zini</title><link>https://sourceforge.net/p/wreport/home/Overview/</link><description>&lt;pre&gt;--- v7 
+++ v8 
@@ -113,4 +113,4 @@
 
 The COSMO model requires observations in NetCDF format, and the previous AOF format is now considered obsolete.
 
-The natural source of observed data for COSMO model should be BUFR following a well-defined template (e.g. WMO reports). DB-All.e's **dbamsg** can be used to convert other kinds of input messages to ther appropriate templates.
+The natural source of observed data for COSMO model should be BUFR following a well-defined template (e.g. WMO reports). DB-All.e's **dbamsg** can be used to convert other kinds of input messages to ther appropriate templates (see [TemplateConversion]).
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Enrico Zini</dc:creator><pubDate>Thu, 06 Oct 2011 10:58:52 -0000</pubDate><guid>https://sourceforge.net5af6039425fe589c828e00744b5e282c0913e7ea</guid></item><item><title>WikiPage Overview modified by Enrico Zini</title><link>https://sourceforge.net/p/wreport/home/Overview/</link><description>&lt;pre&gt;--- v6 
+++ v7 
@@ -89,19 +89,28 @@
  * Simple query syntax based on:
     * slicing the physical space by adding constraints on its dimensions (coordinate bounding boxes, minimum/maximum reference time, choice of vertical level, type of statistical processing, type of variable measured);
     * extra constraints based on ground station information or variable attributes (e.g. only data from stations higher than 1000m, or only values with confidence less than 50%).
- * Comprehensive documentation
-
- * python bindings
- * GNU R
- * provami
-
+ * Comprehensive documentation.
+
+### Python bindings
+
+Various parts of the C++ API are also exported as a Python module, which provides low-level message I/O and full database manipulation.
+
+The basic Python bindings are used to build two more high level Python modules:
+
+ * volnd: exports physical data from a DB-All.e database into [NumPy](http://numpy.scipy.org/) multidimensional [Masked Arrays](http://docs.scipy.org/doc/numpy/reference/maskedarray.html).
+ * rconvert: exports physical data from a DB-All.e database into multidimensional arrays for [GNU R](http://www.r-project.org/).
+
+### Graphical interface
+
+**provami** is a graphical interface based on [wxPython](http://www.wxpython.org/) that can be used to browse the database, incrementally build queries, and perform import, export and simple manipulation.
+
+On top of BUFR, CREX and CSV, provami can also export GNU R datasets.
+
+
 ## Provided by bufr2netcdf
 
-BUFR preprocessor for observation COSMO data ingest. 
-It's a tools for decoding BUFR reports and creating input files for COSMO model assimilation. 
-
-* COSMO model requires observations in netcdf format (AOF is considered obsolete) 
-* The COSMO netcdf format is the translation of a BUFR structure in netcdf, difficult to write directly from user applications and not following any standard specification 
-* The physical interpretation of the data is done into the COSMO model (&gt;14K lines) 
-* The natural source of observed data for COSMO model should be BUFR following a predefined template (e.g. WMO reports) 
-* This conversion is an almost literal translation of a BUFR into a netcdf data structure 
+bufr2netcdf is a tool for decoding BUFR reports and creating input files for COSMO model assimilation. 
+
+The COSMO model requires observations in NetCDF format, and the previous AOF format is now considered obsolete.
+
+The natural source of observed data for COSMO model should be BUFR following a well-defined template (e.g. WMO reports). DB-All.e's **dbamsg** can be used to convert other kinds of input messages to ther appropriate templates.
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Enrico Zini</dc:creator><pubDate>Wed, 05 Oct 2011 13:47:53 -0000</pubDate><guid>https://sourceforge.net64fce3abb3f8beb8e3ffc98396ecaee4d73417b2</guid></item><item><title>WikiPage Overview modified by Enrico Zini</title><link>https://sourceforge.net/p/wreport/home/Overview/</link><description>&lt;pre&gt;--- v5 
+++ v6 
@@ -60,33 +60,43 @@
 
 ## Provided by DB-All.e
 
-It can import observations from various sources into a unique, high-level, physically-based data model (lon, lat, time, level, parameter, etc.) and export them back 
-
-* It uses Wreport library for BUFR and CREX encoding-decoding 
-* It has a GUI for quickly navigating into observation datasets 
-* It depends on other external libraries 
-* It import data from other formats, such as Binary COSMO AOF (ro) and Text with predefined csv structure (rw) 
-* It understand BUFR with different templates (e.g. those from MARS at ECMWF) 
-* using command line tools can convert from those formats and write BUFR in WMO/GTS template 
-* It has a Fortran interface 
-
+It can import observations from various sources into a unique, high-level, physically-based data model (lon, lat, time, level, parameter, etc.), where they can be manipulated at will and exported back to BUFR or CREX messages.
+
+ * It uses the Wreport library for BUFR and CREX encoding and decoding.
+ * It has a GUI for quickly navigating into observation datasets.
+ * It import data from other formats, such as Binary COSMO AOF (ro) and Text with predefined csv structure (rw).
+ * It understands BUFR with different templates (e.g. those from MARS at ECMWF and some of the new WMO GTS templates).
+ * Using command line tools can convert from those formats and write BUFR in  WMO/GTS template.
+ * It has a Fortran interface.
+
+### Command line tools
+
  * dbatbl: a query tool for BUFR tables
  * dbamsg: a tool to manipulate BFUR and CREX messages.
     * prints the contents of messages.
     * selects messages from a file.
     * convert to and *from* CSV, either raw messages or their physical interpretation.
     * convert data across different formats and/or message templates.
     * finds differences between message contents.
     * AOF messages can also be processed by most dbamsg functions, but they cannot be written.
  * dbadb
- * fortran API
+    * database maintenance: create, dump, reset.
+    * import and export of data from/to BUFR and CREX messages.
+
+### Fortran API
+
+ * Works with physically interpreted data, either in BUFR, CREX or AOF messages or in the DB-All.e database.
+ * Simple query syntax based on:
+    * slicing the physical space by adding constraints on its dimensions (coordinate bounding boxes, minimum/maximum reference time, choice of vertical level, type of statistical processing, type of variable measured);
+    * extra constraints based on ground station information or variable attributes (e.g. only data from stations higher than 1000m, or only values with confidence less than 50%).
+ * Comprehensive documentation
+
  * python bindings
  * GNU R
  * provami
 
 ## Provided by bufr2netcdf
 
- * ...
 BUFR preprocessor for observation COSMO data ingest. 
 It's a tools for decoding BUFR reports and creating input files for COSMO model assimilation. 
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Enrico Zini</dc:creator><pubDate>Wed, 05 Oct 2011 13:27:50 -0000</pubDate><guid>https://sourceforge.netcaad0f4460c1fbe830b994124fde0845ac04fb4c</guid></item><item><title>WikiPage Overview modified by Enrico Zini</title><link>https://sourceforge.net/p/wreport/home/Overview/</link><description>&lt;pre&gt;--- v4 
+++ v5 
@@ -1,68 +1,97 @@
 # wreport library and software overview
 
+## Definitions 
+
+* low level d/encoding 
+* physically-based data model: unique, high-level, physically-based data model (lon, lat, time, level, parameter, etc.)
+
 ## Provided by wreport
 
+* C++ Library for encoding-decoding BUFR and CREX messages at low level 
+* It includes a simple command line BUFR dumper 
+* It has a minimal dependency on external libraries 
+* It cannot convert BUFR between different templates 
+* It can use tables in standard XML format as distributed by WMO (easy maintenance) 
+
 ### Core library features
 
  * BUFR table loading and querying.
  * An abstraction for BUFR variables, storing values with the correct number of significant digits (no artifacts introduced by floats or doubles), and with access to metadata (description, measurement unit, significant digits...) for each variable.
  * Unit conversion, transparent unit conversion when working with variables, conversion functions between related code tables.
  * Variables can be annotated using other variables, to store values that reference other values, such as quality control statistics or substituted values.
  * Script to download and acquire the latest BUFR and CREX tables from WMO. 
 
 ### BUFR decoder features
 
 The decoder supports BUFR editions 2, 3 and 4, both uncompressed and compressed.
 
 C operators supported are:
 
  * 1 change data width
  * 2 change data scale
  * 4 add associated field, limited to 32 bits of associated fields and to associated field significances 1, 2, and 6.
  * 5 character data
  * 6 local descriptor with explicit length
  * 8 override length of character data
  * 22 quality information matched via data present bitmap
  * 23 substituted values matched via data present bitmap
  * 24 first order statistical values matched via data present bitmap
 
 ### BUFR encoder features
 
 All features supported by the decoder are supported by the encoder, and tested via decode/reencode/decode runs.
 
 The encoder however does not yet support compression of multisubset data sections.
 
 ### CREX decoder features
 
 The decoder supports CREX edition 1.
 
 B, R and D opcodes are supported. Some C modifiers may be supported, but are untested due to lack of real-world samples.
 
 ### CREX encoder features
 
 All features supported by the decoder are supported by the encoder, and tested via decode/reencode/decode runs.
 
 ### Command line tools
 
 wrep: a tool to print the contents of BUFR and CREX messages.
 
 
 ## Provided by DB-All.e
 
+It can import observations from various sources into a unique, high-level, physically-based data model (lon, lat, time, level, parameter, etc.) and export them back 
+
+* It uses Wreport library for BUFR and CREX encoding-decoding 
+* It has a GUI for quickly navigating into observation datasets 
+* It depends on other external libraries 
+* It import data from other formats, such as Binary COSMO AOF (ro) and Text with predefined csv structure (rw) 
+* It understand BUFR with different templates (e.g. those from MARS at ECMWF) 
+* using command line tools can convert from those formats and write BUFR in WMO/GTS template 
+* It has a Fortran interface 
+
  * dbatbl: a query tool for BUFR tables
  * dbamsg: a tool to manipulate BFUR and CREX messages.
     * prints the contents of messages.
     * selects messages from a file.
     * convert to and *from* CSV, either raw messages or their physical interpretation.
     * convert data across different formats and/or message templates.
     * finds differences between message contents.
     * AOF messages can also be processed by most dbamsg functions, but they cannot be written.
  * dbadb
  * fortran API
  * python bindings
  * GNU R
  * provami
 
 ## Provided by bufr2netcdf
 
  * ...
+BUFR preprocessor for observation COSMO data ingest. 
+It's a tools for decoding BUFR reports and creating input files for COSMO model assimilation. 
+
+* COSMO model requires observations in netcdf format (AOF is considered obsolete) 
+* The COSMO netcdf format is the translation of a BUFR structure in netcdf, difficult to write directly from user applications and not following any standard specification 
+* The physical interpretation of the data is done into the COSMO model (&gt;14K lines) 
+* The natural source of observed data for COSMO model should be BUFR following a predefined template (e.g. WMO reports) 
+* This conversion is an almost literal translation of a BUFR into a netcdf data structure 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Enrico Zini</dc:creator><pubDate>Wed, 05 Oct 2011 13:14:13 -0000</pubDate><guid>https://sourceforge.neta082d08c0da33c095b27f3e43c9584921df9c3f3</guid></item><item><title>WikiPage Overview modified by Enrico Zini</title><link>https://sourceforge.net/p/wreport/home/Overview/</link><description>&lt;pre&gt;--- v3 
+++ v4 
@@ -1,86 +1,68 @@
 # wreport library and software overview
 
-
-## Definitions
-
- * low level d/encoding
- * physically-based data model: unique, high-level, physically-based data model (lon, lat, time, level, parameter, etc.)
-
 ## Provided by wreport
 
- * C++ Library for encoding-decoding BUFR and CREX messages at low level
- * It includes a simple command line BUFR dumper
- * It has a minimal dependency on external libraries
- * It cannot convert BUFR between different templates
- * It can use tables in standard XML format as distributed by WMO (easy maintenance)
-
 ### Core library features
 
  * BUFR table loading and querying.
  * An abstraction for BUFR variables, storing values with the correct number of significant digits (no artifacts introduced by floats or doubles), and with access to metadata (description, measurement unit, significant digits...) for each variable.
  * Unit conversion, transparent unit conversion when working with variables, conversion functions between related code tables.
  * Variables can be annotated using other variables, to store values that reference other values, such as quality control statistics or substituted values.
  * Script to download and acquire the latest BUFR and CREX tables from WMO. 
 
 ### BUFR decoder features
 
 The decoder supports BUFR editions 2, 3 and 4, both uncompressed and compressed.
 
 C operators supported are:
 
  * 1 change data width
  * 2 change data scale
  * 4 add associated field, limited to 32 bits of associated fields and to associated field significances 1, 2, and 6.
  * 5 character data
  * 6 local descriptor with explicit length
  * 8 override length of character data
  * 22 quality information matched via data present bitmap
  * 23 substituted values matched via data present bitmap
  * 24 first order statistical values matched via data present bitmap
 
 ### BUFR encoder features
 
 All features supported by the decoder are supported by the encoder, and tested via decode/reencode/decode runs.
 
 The encoder however does not yet support compression of multisubset data sections.
 
 ### CREX decoder features
 
 The decoder supports CREX edition 1.
 
 B, R and D opcodes are supported. Some C modifiers may be supported, but are untested due to lack of real-world samples.
 
 ### CREX encoder features
 
 All features supported by the decoder are supported by the encoder, and tested via decode/reencode/decode runs.
 
+### Command line tools
+
+wrep: a tool to print the contents of BUFR and CREX messages.
+
+
 ## Provided by DB-All.e
-It can import observations from various sources into a unique, high-level, physically-based data model (lon, lat, time, level, parameter, etc.) and export them back
-
- * It uses Wreport library for BUFR and CREX encoding-decoding
- * It has a GUI for quickly navigating into observation datasets
- * It depends on other external libraries
- * It import data from other formats, such as Binary COSMO AOF (ro) and Text with predefined csv structure (rw) 
- * It understand BUFR with different templates (e.g. those from MARS at ECMWF)
- * using command line tools can convert from those formats and write BUFR in WMO/GTS template
- * It has a Fortran interface
-
- * dbatbl
- * dbamsg
-    * CSV import/export
+
+ * dbatbl: a query tool for BUFR tables
+ * dbamsg: a tool to manipulate BFUR and CREX messages.
+    * prints the contents of messages.
+    * selects messages from a file.
+    * convert to and *from* CSV, either raw messages or their physical interpretation.
+    * convert data across different formats and/or message templates.
+    * finds differences between message contents.
+    * AOF messages can also be processed by most dbamsg functions, but they cannot be written.
  * dbadb
  * fortran API
  * python bindings
  * GNU R
  * provami
 
 ## Provided by bufr2netcdf
 
-BUFR preprocessor for observation COSMO data ingest.
-It's a tools for decoding BUFR reports and creating input files for COSMO model assimilation.
-
- * COSMO model requires observations in netcdf format (AOF is considered obsolete)
- * The COSMO netcdf format is the translation of a BUFR structure in netcdf, difficult to write directly from user applications and not following any standard specification
- * The physical interpretation of the data is done into the COSMO model (&gt;14K lines)
- * The natural source of observed data for COSMO model should be BUFR following a predefined template (e.g. WMO reports)
- * This conversion is an almost literal translation of a BUFR into a netcdf data structure
+ * ...
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Enrico Zini</dc:creator><pubDate>Wed, 05 Oct 2011 13:09:05 -0000</pubDate><guid>https://sourceforge.net60577e91dc39e72ae93341ea9ccc0df9087d62fe</guid></item><item><title>WikiPage Overview modified by Paolo Patruno</title><link>https://sourceforge.net/p/wreport/home/Overview/</link><description>&lt;pre&gt;--- v2 
+++ v3 
@@ -1,58 +1,86 @@
 # wreport library and software overview
 
+
+## Definitions
+
+ * low level d/encoding
+ * physically-based data model: unique, high-level, physically-based data model (lon, lat, time, level, parameter, etc.)
+
 ## Provided by wreport
 
+ * C++ Library for encoding-decoding BUFR and CREX messages at low level
+ * It includes a simple command line BUFR dumper
+ * It has a minimal dependency on external libraries
+ * It cannot convert BUFR between different templates
+ * It can use tables in standard XML format as distributed by WMO (easy maintenance)
+
 ### Core library features
 
  * BUFR table loading and querying.
  * An abstraction for BUFR variables, storing values with the correct number of significant digits (no artifacts introduced by floats or doubles), and with access to metadata (description, measurement unit, significant digits...) for each variable.
  * Unit conversion, transparent unit conversion when working with variables, conversion functions between related code tables.
  * Variables can be annotated using other variables, to store values that reference other values, such as quality control statistics or substituted values.
  * Script to download and acquire the latest BUFR and CREX tables from WMO. 
 
 ### BUFR decoder features
 
 The decoder supports BUFR editions 2, 3 and 4, both uncompressed and compressed.
 
 C operators supported are:
 
  * 1 change data width
  * 2 change data scale
  * 4 add associated field, limited to 32 bits of associated fields and to associated field significances 1, 2, and 6.
  * 5 character data
  * 6 local descriptor with explicit length
  * 8 override length of character data
  * 22 quality information matched via data present bitmap
  * 23 substituted values matched via data present bitmap
  * 24 first order statistical values matched via data present bitmap
 
 ### BUFR encoder features
 
 All features supported by the decoder are supported by the encoder, and tested via decode/reencode/decode runs.
 
 The encoder however does not yet support compression of multisubset data sections.
 
 ### CREX decoder features
 
 The decoder supports CREX edition 1.
 
 B, R and D opcodes are supported. Some C modifiers may be supported, but are untested due to lack of real-world samples.
 
 ### CREX encoder features
 
 All features supported by the decoder are supported by the encoder, and tested via decode/reencode/decode runs.
 
 ## Provided by DB-All.e
+It can import observations from various sources into a unique, high-level, physically-based data model (lon, lat, time, level, parameter, etc.) and export them back
+
+ * It uses Wreport library for BUFR and CREX encoding-decoding
+ * It has a GUI for quickly navigating into observation datasets
+ * It depends on other external libraries
+ * It import data from other formats, such as Binary COSMO AOF (ro) and Text with predefined csv structure (rw) 
+ * It understand BUFR with different templates (e.g. those from MARS at ECMWF)
+ * using command line tools can convert from those formats and write BUFR in WMO/GTS template
+ * It has a Fortran interface
 
  * dbatbl
  * dbamsg
     * CSV import/export
  * dbadb
  * fortran API
  * python bindings
  * GNU R
  * provami
 
 ## Provided by bufr2netcdf
 
- * ...
+BUFR preprocessor for observation COSMO data ingest.
+It's a tools for decoding BUFR reports and creating input files for COSMO model assimilation.
+
+ * COSMO model requires observations in netcdf format (AOF is considered obsolete)
+ * The COSMO netcdf format is the translation of a BUFR structure in netcdf, difficult to write directly from user applications and not following any standard specification
+ * The physical interpretation of the data is done into the COSMO model (&gt;14K lines)
+ * The natural source of observed data for COSMO model should be BUFR following a predefined template (e.g. WMO reports)
+ * This conversion is an almost literal translation of a BUFR into a netcdf data structure
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Paolo Patruno</dc:creator><pubDate>Wed, 05 Oct 2011 13:08:38 -0000</pubDate><guid>https://sourceforge.net004462cc145ec241ee0946780eac8bada5aa12bb</guid></item><item><title>WikiPage Overview modified by Enrico Zini</title><link>https://sourceforge.net/p/wreport/home/Overview/</link><description>&lt;pre&gt;--- v1 
+++ v2 
@@ -8,36 +8,51 @@
  * An abstraction for BUFR variables, storing values with the correct number of significant digits (no artifacts introduced by floats or doubles), and with access to metadata (description, measurement unit, significant digits...) for each variable.
  * Unit conversion, transparent unit conversion when working with variables, conversion functions between related code tables.
  * Variables can be annotated using other variables, to store values that reference other values, such as quality control statistics or substituted values.
-
+ * Script to download and acquire the latest BUFR and CREX tables from WMO. 
+
 ### BUFR decoder features
 
 The decoder supports BUFR editions 2, 3 and 4, both uncompressed and compressed.
 
 C operators supported are:
 
  * 1 change data width
  * 2 change data scale
  * 4 add associated field, limited to 32 bits of associated fields and to associated field significances 1, 2, and 6.
  * 5 character data
  * 6 local descriptor with explicit length
  * 8 override length of character data
  * 22 quality information matched via data present bitmap
  * 23 substituted values matched via data present bitmap
  * 24 first order statistical values matched via data present bitmap
 
 ### BUFR encoder features
 
 All features supported by the decoder are supported by the encoder, and tested via decode/reencode/decode runs.
 
 The encoder however does not yet support compression of multisubset data sections.
 
 ### CREX decoder features
 
 The decoder supports CREX edition 1.
 
 B, R and D opcodes are supported. Some C modifiers may be supported, but are untested due to lack of real-world samples.
 
 ### CREX encoder features
 
 All features supported by the decoder are supported by the encoder, and tested via decode/reencode/decode runs.
 
+## Provided by DB-All.e
+
+ * dbatbl
+ * dbamsg
+    * CSV import/export
+ * dbadb
+ * fortran API
+ * python bindings
+ * GNU R
+ * provami
+
+## Provided by bufr2netcdf
+
+ * ...
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Enrico Zini</dc:creator><pubDate>Wed, 05 Oct 2011 11:49:11 -0000</pubDate><guid>https://sourceforge.nete4a95ea06b8fea214eefd7112ff0d01cd30235e1</guid></item><item><title>WikiPage Overview modified by Enrico Zini</title><link>https://sourceforge.net/p/wreport/home/Overview/</link><description># wreport library and software overview

## Provided by wreport

### Core library features

 * BUFR table loading and querying.
 * An abstraction for BUFR variables, storing values with the correct number of significant digits (no artifacts introduced by floats or doubles), and with access to metadata (description, measurement unit, significant digits...) for each variable.
 * Unit conversion, transparent unit conversion when working with variables, conversion functions between related code tables.
 * Variables can be annotated using other variables, to store values that reference other values, such as quality control statistics or substituted values.

### BUFR decoder features

The decoder supports BUFR editions 2, 3 and 4, both uncompressed and compressed.

C operators supported are:

 * 1 change data width
 * 2 change data scale
 * 4 add associated field, limited to 32 bits of associated fields and to associated field significances 1, 2, and 6.
 * 5 character data
 * 6 local descriptor with explicit length
 * 8 override length of character data
 * 22 quality information matched via data present bitmap
 * 23 substituted values matched via data present bitmap
 * 24 first order statistical values matched via data present bitmap

### BUFR encoder features

All features supported by the decoder are supported by the encoder, and tested via decode/reencode/decode runs.

The encoder however does not yet support compression of multisubset data sections.

### CREX decoder features

The decoder supports CREX edition 1.

B, R and D opcodes are supported. Some C modifiers may be supported, but are untested due to lack of real-world samples.

### CREX encoder features

All features supported by the decoder are supported by the encoder, and tested via decode/reencode/decode runs.

</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Enrico Zini</dc:creator><pubDate>Wed, 05 Oct 2011 11:45:08 -0000</pubDate><guid>https://sourceforge.net984a3dffd69aba576479f8fc6a05b5768d1ee2bf</guid></item></channel></rss>