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 Next | |
Sep 9, 2019 | |
1 year 4 months | Documentation fixes: some code examples were using an invalid Date() call |
Commit 2502, by Mathias Bavay | |
Sep 6, 2019 | |
1 year 4 months | Improved documentation |
Commit 2501, by Mathias Bavay | |
1 year 4 months | A new TimeFilter has been implemented to sort the timestamps in increasing order |
Commit 2500, by Mathias Bavay | |
1 year 4 months | It is now possible to read and parse CSV files containing mulotiple stations in one file, each line containing a station ID. In this case, the requested station ID must be declared with the CSV#_ID parameter. |
Commit 2499, by Mathias Bavay | |
Sep 5, 2019 | |
1 year 4 months | Minor tweak to CsvIO |
Commit 2498, by Mathias Bavay | |
Aug 31, 2019 | |
1 year 4 months | Removal of two debugging loops. Why is this always so easy to see once it's online? |
Commit 2497, by Michael Reisecker | |
1 year 4 months | Singular value decomposition implemented, albeit the most easy one, and therefore probably still not enough to tackle matrices that don't behave. |
Commit 2496, by Michael Reisecker | |
Aug 30, 2019 | |
1 year 4 months | One step towards singular values decomposition: Eigenvalues and vectors of symmetrical matrices via Jacobi. My code, so no license troubles. Further styling and updating a dead link. |
Commit 2495, by Michael Reisecker | |
1 year 4 months | The handling of location information in the data section had been butchered by the latest changes to location handling, it is now properly done... |
Commit 2494, by Mathias Bavay | |
1 year 4 months | Cosmetic changes: making sure we use ii, jj, kk etc indices so searches work better |
Commit 2493, by Mathias Bavay | |
1 year 4 months | Minor code cleanup in libsmet (factoring a little bit more the append/not append code). Improved documentation in Date as well as making internal arrays private. White spaces changes in Coords. |
Commit 2492, by Mathias Bavay | |
Aug 29, 2019 | |
1 year 4 months | Offering an alternative, completely independent, solver for linear systems via Gauss elimination with partial pivoting. Matrix inversion is about 2.4 times slower than the Doolittle version but it can handle rogue zeros at the diagonal. |
Commit 2491, by Michael Reisecker | |
1 year 4 months | Interestingly, the reference lat/lon in the tests were slightly off, leading to errors when comparing the provided lat/lon with the re-computed lat/lon from easting/northing... |
Commit 2490, by Mathias Bavay | |
1 year 4 months | So, the mysterious compilation messages related to strerror now make sense: depending on the include, it is either std::strerror or not part of std! It has been changed to be consistent... |
Commit 2489, by Mathias Bavay | |
Aug 28, 2019 | |
1 year 4 months | Trying to address issue 774: now when both lat/lon and east/north coordinates are provided, their consistency is checked (it used to be this way a while ago but somehow this behavior ceased, probably because of some refactoring in Coords). |
Commit 2488, by Mathias Bavay | |
1 year 4 months | Fixed some missing includes and wrong namespace that prevented compiling... |
Commit 2487, by Mathias Bavay | |
Aug 27, 2019 | |
1 year 4 months | Ciao Eigen, you were just too big. Maybe we can learn from you that all arrays should have the same base class. |
Commit 2486, by Michael Reisecker | |
1 year 4 months | Switching the particle and Kalman filter to the MeteoIO matrix class. The results are indistinguishable in the example program, and it's even 1/3rd faster. I hope I got all index increment transitions, needs retesting of the more 'obscure' features. |
Commit 2485, by Michael Reisecker | |
1 year 4 months | A few matrix class enhancements to retrieve and set rows and cols by index, get the diagonal, the max coefficient with index, and resize with a data vector to init. Naive implementations, needs some love at some point... |
Commit 2484, by Michael Reisecker | |
1 year 4 months | Adding a filter (RHWATERTOICE) to correct relative humidity over water for the full temperature range to relative humidity over ice when T below triple point and over water otherwise. For example useful for weather stations that report relative humi… |
Commit 2483, by Nander Wever |