AgeSort asc/desc | Change |
---|---|
Prev 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 Next | |
Aug 18, 2010 | |
10 years 8 months | Added a void write(const string& filename) procedure to the Config class. The Config object can thus be written into an ini file. |
Commit 400, by Thomas Egger | |
Aug 17, 2010 | |
10 years 8 months | Fixed a small bug in IOUtils::seek, the binary search on vectors of MeteoData. Added two functions to MeteoData: bool param_exists(string) and void reset() reset() sets all the values of the MeteoData object to IOUtils::nodata (note: not the date), |
Commit 399, by Thomas Egger | |
Aug 16, 2010 | |
10 years 8 months | Fixed a bug in the subset method (the indices were swapped) |
Commit 398, by Mathias Bavay | |
10 years 8 months | Code tagging and some usefull methods for debugging and the begining of a true accumulator for time series (for any sampling rates). |
Commit 397, by Mathias Bavay | |
10 years 8 months | Added a soft min/max filter to Meteo2DInterpolator. It is explicitly called for RH grids and HNW grids to make sure values stay in the range of [0;1] (for RH) or [0; inf) (for HNW). |
Commit 396, by Thomas Egger | |
Aug 12, 2010 | |
10 years 8 months | Fixed a bug in the accumulation filter that returns 0 even if the data set only contained nodata. The linear regression implementation is now able to remove a variable number of "invalid" points based on the initial size of the data set. Some extra |
Commit 395, by Mathias Bavay | |
10 years 8 months | Several speed optimizations have been brought to the 2D interpolations (using the const keyword when possible, etc). The Quake3 1/x^2 approximation has been implemented for the IDW_core and brings a slight loss of precision (1e-6 in relative error in |
Commit 394, by Mathias Bavay | |
Aug 11, 2010 | |
10 years 8 months | The array memory alignement has been fixed for Array2D (this was the only that was wrongly aligned). This is a fix to issue 43 |
Commit 393, by Mathias Bavay | |
Aug 10, 2010 | |
10 years 8 months | Small bug fix and first steps toward generating packages for Windows and Mac |
Commit 392, by Mathias Bavay | |
10 years 8 months | Tagging release 1.1.1 |
Commit 391, by Mathias Bavay | |
10 years 8 months | Version numbers pushed to 1.1.1 |
Commit 390, by Mathias Bavay | |
10 years 8 months | The bufferAlways method of BufferedIOHandler has been renamed as setBufferProperties. The A3DIO, IMISIO, SMETIO and SNIO plugins now correctly support time zones. The plugin howto documentation now warns the developer to take care of time zones issue |
Commit 389, by Mathias Bavay | |
Aug 6, 2010 | |
10 years 8 months | The DEMObject was not properly buffered (the update flag was not honored), this has been fixed. The A3DIO plugin now implements readStationData. A few speed improvements have been brought to A3DIO and SMETIO by using the "reserve" method of the vecto |
Commit 388, by Mathias Bavay | |
Aug 4, 2010 | |
10 years 8 months | The proper marshaling for MeteoData has been implemented, but not yet tested... |
Commit 387, by Mathias Bavay | |
Aug 3, 2010 | |
10 years 8 months | The DEMObject subset constructor was broken, it has been fixed. It involved creating a subset method in the arrays classes. The Coord class now supports using the given UTM zone when converting from lat/long to UTM. If the computed zone does not mat |
Commit 386, by Mathias Bavay | |
10 years 8 months | Added an implementation of the method subset to Array2D<T> |
Commit 385, by Thomas Egger | |
10 years 8 months | Added a deleteKey function to Config object: both deleteKey("testkey", "mysection") or just deleteKey("testkey2") are valid (defaulting to the GENERAL section). |
Commit 384, by Thomas Egger | |
Aug 2, 2010 | |
10 years 8 months | Bugfix: The buffer was filled with all data before the date requested, it should only fill the buffer with data between dateStart and dateEnd |
Commit 383, by Thomas Egger | |
10 years 8 months | Introduced new template function get(key, section) and get(key) to the Config class, it should make reading of values easier: Config cfg("io.ini"); vector<int> = cfg.get("DEPTHS", "INPUT", Config::nothrow); string mystr = cfg.get("PATH", "OUTPUT"); |
Commit 382, by Thomas Egger | |
10 years 8 months | The WIND_CURV spatial interpolations algorithm now intelligently checks if the curvatures are available or not and gives a warning if not (and also take a 0 grade so that it would not be used). The SMET plugin now uses the user provided coordinate s |
Commit 381, by Mathias Bavay |