WSL/SLF GitLab Repository
Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
meteoio
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
snow-models
meteoio
Repository graph
Repository graph
You can move around the graph by using the arrow keys.
0a17e2dd6a9e4089eab3684b9b40b08fb9f43f51
Select Git revision
Selected
0a17e2dd6a9e4089eab3684b9b40b08fb9f43f51
Branches
4
master
default
protected
BUFR_changes
feature/web-service
limiting_trends
Tags
20
test
MeteoIO-2.11.0
webservice-2022
MeteoIO-2.10.0
MeteoIO-2.9.0
MeteoIO-2.8.0
MeteoIO-2.7.0
MeteoIO-2.6.1
MeteoIO-2.6.0
MeteoIO-2.5.1
MeteoIO-2.5.0
MeteoIO-2.4.2
MeteoIO-2.4.1
MeteoIO-2.4.0
MeteoIO-2.3.0
MeteoIO-2.2.0
MeteoIO-2.1.2
MeteoIO-2.1.1
MeteoIO-2.1.0
MeteoIO-2.0.0
25 results
Select display option
Display full history
Display full history
Display up to revision
Created with Raphaël 2.2.0
19
Jan
14
13
12
11
8
7
6
5
17
Dec
16
11
10
9
7
16
Nov
9
8
6
5
4
3
2
1
29
Oct
27
25
24
22
21
20
12
11
7
3
1
30
Sep
22
8
7
6
3
27
Aug
26
24
23
20
19
18
17
16
12
11
10
6
4
3
2
1
28
Jul
26
23
22
21
20
19
16
15
14
13
12
7
6
2
30
Jun
29
28
26
25
24
22
21
17
16
15
14
9
8
7
3
2
28
May
27
26
6
3
30
Apr
29
28
26
25
22
21
20
16
15
14
13
12
8
7
6
1
31
Mar
30
29
26
25
19
16
15
9
4
1
25
Feb
23
22
19
18
17
16
15
10
9
5
3
29
Jan
28
27
24
20
19
18
14
13
12
8
7
4
21
Dec
17
15
11
9
8
7
3
2
1
22
Nov
19
17
12
11
10
9
7
5
4
3
2
30
Oct
29
28
27
22
21
19
14
13
9
5
18
Sep
15
14
10
8
6
5
4
2
1
28
Aug
27
26
25
20
19
18
17
14
13
12
10
7
4
3
29
Jul
28
27
23
22
21
20
16
14
12
11
10
7
1
24
Jun
19
18
17
16
15
12
11
10
9
3
29
May
28
27
26
The definition of the "<<" operator has been written for IOManager and made more consistent for others
The documentation has been updated (structure diagram, missing key in ImisIO) as well as the code examples so that they use the latest changes.
Added functionality to the Meteo2DInterpolator: it is now possible to access the iomanager and hence to access historical data points from within any spatial interpolation.
Added all functionality supported by the IOInterface abstract super class to IOManager
Introducing the new IOManager - the user interface to meteoio. This version is fully backwards compatible, but does not incorporate all features of the BufferedIOHandler: the grid reading and writing are currently not supported by this IOManager.
Some more cleanup in the Matrix class: there is a transpose in place operator (that actually does an internal copy), a few bugs in constructors got fixed. The matrix code example now works with this version.
Fixed some warnings, added a copy constructor to the Matrix class, changed the methods names so that a method that does NOT change the matrix itself is called "getXXX', like "getInv" compared to "inv" that inverses the matrix in place.
The solve method for AX=B now works with A square matrix, X and B rectangular matrix. Better efforts are done to avoid divisions by zero. Better documentation. A new method has appeared to fill a matrix with random numbers.
First implementation of the matrix solving of AX=B. This is a static member of the Matrix class and returns the solution matrix. Currently, only square matrix are supported.
The documentation and examples have been updated to reflect the latest changes in MeteoIO (namely: the merging of MeteoData with StationData). A documentation bug has been fixed, that involved deleting the doxygen comments for the commented "clone()" method in IOInterface. Since this is not used anywhere and has been commented out for a while, this method has been fully deleted.
Necessary changes for POPC
The marshalling for MeteoData and StationData has been redone to cope with recent changes
More details in error messages
Code cleanup and the ability to set a date from system date.
Bugfix for ImisIO: stations that don't require any ANETZ data although useAnetz is set are correctly treated now.
cosmetic commit: fixed a doxygen comment, fixed some alignements
The unnecessary copies of a Config object have been removed from MeteoFilter and MeteoProcessor. Now, cfg is used in the constructor and not kept any longer. Next task: do the same for Meteo1DInterpolator!
The smoothing algorithms have been renammed as Process instead of Filter. The rate and the Tukey filters have been improved so that they correctly handles nodata.
The new IOInterface also affects the Meteo2DInterpolator. Changes compile, no testing done yet.
The changes to the IOInterface (no more vec<vec<StationData>>) have been propagated into all plugins.
MeteoData now has an extra public member variable: StationData meta. It will hold the meta information of the measurment instead of dragging along a second vector<StationData> alongside the vector<MeteoData> everywhere.
Some code annotations (TODO and HACK) as well as new filters or new implementations: rate filter, standard deviation filter and Tukey 53H filter.
Enhancement to the ImisIO plugin: more verbose error message when logon or connection fails.
Now the documentation is NOT built by default (so there is no "doxygen not found" warning)
Optimized the performance of the resampling of "extended" meteo parameters for MeteoData objects. The problem is, we cannot know beforehand whether there are other meteo parameters.
Documentation fixes for IMISIO, more robust detection of libraries for cmake
Bugfix in ImisIO: if there was no antetzdata, it could come to inconsistencies between the psum vectors, that would lead to an IOException. Fix: Fill up empty slices of psums, ensuring the overall consistency.
Fixing documentation
Tagging release 1.1.3
MeteoIO-1.1.3
MeteoIO-1.1.3
Pushed release number up to 1.1.3
Small documentation/indentation update. CPack can now create source packages, by typing "make package_source"
The ImisIO plugin now is fully capable of dealing with the ANETZ precipitation data in the "old" way. Furthermore the wind drift data is read from the correct stations and added to the MeteoData as VW_DRIFT and DW_DRIFT.
Removed the NODATA in MeteoData::Parameters (it was not working and not even used...)
Documentation update
The resampling of MeteoData parameters was restricted to the well known ones defined in the enum MeteoData::Parameters. The Meteo1DInterpolator and the resampling algorithms have been adapted to allow the resampling of any meteo parameter, i. e. those that are plugin specific or user added.
The SMETIO plugin now supports the "units_multiplier" field. The SMET specification has been brought to 1.0. A forgotten debugging output has been removed in InterpolationAlgorithms
An error was found: the linear regression returns the regression coefficient r, not r2!! It has been modified so that it returns |r| and prints r2 in the info strings.
Updating the default io.ini example so it fits the latest changes made in the code
The "frac" optional argument (for fractional lapse rate, or relative lapse rate) has been added to IDW_LAPSE. The documentation has been updated. If HS is interpolated, it is now checked for min/max to be greater than 0.
The SMET plugin was the only plugin not to use "STATION#" for specifying its input files/stations (besides plugin reading a path). It has been modified for consistency. This WILL break older io.ini files...
Loading