Commits · b7ccdbd109c6798da7ddbb880fe9dfb283d97ee9
- Aug 15, 2014
-
-
Mathias Bavay authored
-
Mathias Bavay authored
-
Mathias Bavay authored
-
Mathias Bavay authored
-
Mathias Bavay authored
-
- Aug 14, 2014
-
-
Mathias Bavay authored
-
Mathias Bavay authored
-
Mathias Bavay authored
-
- Aug 12, 2014
-
-
Mathias Bavay authored
-
Mathias Bavay authored
-
Mathias Bavay authored
-
Mathias Bavay authored
-
- Aug 04, 2014
-
-
Mathias Bavay authored
-
- Jul 31, 2014
-
-
Mathias Bavay authored
-
- Jul 27, 2014
-
-
Thomas Egger authored
-
- Jul 18, 2014
-
-
Mathias Bavay authored
-
- Jul 14, 2014
-
-
Mathias Bavay authored
-
Mathias Bavay authored
-
Mathias Bavay authored
-
Mathias Bavay authored
-
- Jul 11, 2014
-
-
Mathias Bavay authored
-
- Jul 10, 2014
-
-
Mathias Bavay authored
-
Mathias Bavay authored
-
Mathias Bavay authored
-
- Jul 09, 2014
-
-
Mathias Bavay authored
-
Mathias Bavay authored
-
Thomas Egger authored
-
- Jul 08, 2014
-
-
Mathias Bavay authored
-
- Jun 26, 2014
-
-
Mathias Bavay authored
-
Mathias Bavay authored
-
- Jun 25, 2014
-
-
Mathias Bavay authored
-
Mathias Bavay authored
-
- Jun 24, 2014
-
-
Mathias Bavay authored
-
- Jun 19, 2014
-
-
Mathias Bavay authored
-
Mathias Bavay authored
-
- Jun 18, 2014
-
-
Mathias Bavay authored
-
- Jun 17, 2014
-
-
Mathias Bavay authored
-
- Jun 16, 2014
-
-
Mathias Bavay authored
-
Mathias Bavay authored
-
- Jun 14, 2014
-
-
Mathias Bavay authored
-
- Jun 14, 2014
-
-
Mathias Bavay authored
Working on wind spatial interpolation: both Ryan and Liston have been reviewed and improved. They can now both be used for VW and/or DW.
-
- Jun 10, 2014
-
-
Mathias Bavay authored
A bug has been fixed when doing nearest neighbour 2D interpolation. The GRIB plugin can now handle non-square cells (by resampling the domain). The cellsize and geolocalization in NetCDF are now handled the same way as in GRIB: the error is minimized in the center of the domain and the llcorner is back-calculated. Therefore very large domains are handled better. The first elements for supporting ECMWF grids have been implemented, the DEMs can now be read (but their remain as geopotential instead of height).
-
- Jun 05, 2014
-
-
Mathias Bavay authored
The support for non-square cells (through resampling to make them square) has been added to GRIBIO. Both for Gribio and Netcdfio, the cellsize is not a max(size_x, size_y) anymore but a min() (in order to be consistent with best practice in GIS)
-
- Jun 03, 2014
-
-
Mathias Bavay authored
-
Mathias Bavay authored
A display bug has been fixed in the Date class, the exceptions code has been cleaned up a little bit and the call stack should now be even less intimidating!
-
- Jun 02, 2014
-
-
Mathias Bavay authored
-
Mathias Bavay authored
turning off "long long" warnings (since we have no choice, we need "long long" and it seems that all modern compilers suport it anyway)
-
Mathias Bavay authored
A new pre-processor variable has been defined: MSVC so the pragmas for VC++ are now properly enabled for msvc only. An improper include for MSWIN has been removed.
-
Mathias Bavay authored
The WIN32 pre-processor variable has been renamed in MSWIN since this is more logical on Win64 (and to avoid potential conflicts). Some headers have been cleaned up in the process (in Timer.h/.cc). A new method has been moved from Config to FileUtils: isAbsolutePath. Some extra features (support for offset in hours) added to NetCDFIO.
-
- May 29, 2014
-
-
Mathias Bavay authored
The Winstral spatial interpolation algorithm is getting into shape: all three modes of operation have been implemented and tested and it is now properly documented. A new data generator has been created that computes a relative humidity from either a dew point temperature or a specific humidity. Adding a "check_attribute" to libncpp.
-
- May 26, 2014
-
-
Mathias Bavay authored
-
- May 23, 2014
-
-
Mathias Bavay authored
Fixing a bug preventing compiling the tests, added a new constructor to Array2D that takes a specific layer out of an Array3D and a new method in Array3D to insert a 2D layer at a specific depth
-
- May 21, 2014
-
-
Mathias Bavay authored
One more optimization for IDW (when only one station is available) and the Winstral algorithm only changes cells with TA<=0
-
Mathias Bavay authored
My previous optimizations had introduced a bug in SimpleDEMWindInterpolate, this has been fixed. The optimizations are actually now done at another location. The (Ryan, 1977) wind direction interpolation has been properly checked, fixed and documented.
-
- May 19, 2014
-
-
Mathias Bavay authored
Yet another step for the MINGW date handling bug workaround... And an optimization: precipitation grids will be directly filled with zeroes if no station sees any precipitation (to avoid complicated algorithms in Winstral, etc)
-
Mathias Bavay authored
-
- May 16, 2014
-
-
Mathias Bavay authored
-
Mathias Bavay authored
Small clean up for the specific/relative humidity conversions. Small code clean up (mostly indentation) for NetCDF.
-
- May 12, 2014
-
-
Thomas Egger authored
NetCDFIO: Now all the wrappers for libnetcdf have been put into a separate namespace called ncpp in separate files.
-
Thomas Egger authored
NetCDFIO: Full implementation of the STRICTFORMAT config option. By default all parameters, also those not conforming with the format are read and written, the user though may force conformity by setting the STRICTFORMAT parameter to TRUE in the io.ini [Input] and [Output] sections
-
Thomas Egger authored
NetCDFIO: Introducing the STRICTFORMAT config parameter for the io.ini when using the NetCDFIO plugin to read or write meteo data. This paramater is by default set to false meaning that meteo parameters that are not present in the CNRM standard for NetCDF files will also be read and written. Setting STRICTFROMAT to true means that only parameters defined in the CNRM standard will be regarded when reading and writing meteo data, all other meteo parameters will be ignored.
-
Mathias Bavay authored
-
- May 11, 2014
-
-
Mathias Bavay authored
-
Mathias Bavay authored
A few extra checks have been added for grid rescaling. Some indentation has been fixed and lots of variables made const. The documentation is now linked to the general plugins documentation.
-
- May 09, 2014
-
-
Mathias Bavay authored
More refinements to the Winstral spatial interpolation: it is now possible to provide a reference station to take the wind direction from, or to provide a fixed wind direction.
-
Mathias Bavay authored
-
- May 08, 2014
-
-
Mathias Bavay authored
-
Mathias Bavay authored
-
Mathias Bavay authored
Fixed a stupid bug in my previous commit and added the possibility to provide a fallback constant when using the CST spatial interpolation: RH::algorithms = Cst RH::cst = 0.3 This would behave as before, except that if no data at all would be available at a given time step, then the value 0.3 would be taken to fill the grid.
-
Mathias Bavay authored
Since IOUtils was getting bigger and bigger, all the methods dealing with low level file handling have been moved into a new file, FilesUtils. It remains in the IOUtils namespace. One method has been moved to Date. A few includes have been cleaned up.
-
Thomas Egger authored
-
Thomas Egger authored
-
Thomas Egger authored
-
- May 07, 2014
-
-
Mathias Bavay authored
The example io.ini file was missing some new changes. The Winstral algorithm had a bug when operating on dems with holes (nodata). It now takes its wind direction as argument (the base algorithm also has to be provided).
-
Mathias Bavay authored
some unecessary lines have been removed and a new target has been added: cxxflags. This only takes compiling options from the cxxflags env variable and is therefore suitable for packagers who need to force their own compiling flags.
-
Thomas Egger authored
-
Thomas Egger authored
NetCDFIO: Further cleanup, readStationData revamped, added a method to check dimensions of a variable
-
- May 06, 2014
-
-
Thomas Egger authored
-
Thomas Egger authored
-
Thomas Egger authored
-
Loading