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 142 143 144 145 146 147 Next | |
Jul 22, 2009 | |
11 years 5 months | Updated the constructors of DEMObject to reflect the inheritance |
Commit 52, by Thomas Egger | |
11 years 5 months | Propagating the subset (subplane) constructor of Array2D into Grid2DObject and DEMObject. Small bugfix in Grid3DObject regarding the calculation of xllcorner and yllcorner. |
Commit 51, by Thomas Egger | |
11 years 5 months | * Added constructor to CArray2D<T>, that allows to create a sub-CArray2D object of a given one. * Changed all function arguments from int to "unsigned int" in CArray2D<T> * Had to change Grid2DObject and Meteo2DInterpolator to reflect the changes |
Commit 50, by Thomas Egger | |
11 years 5 months | Grid3DObject is an object that encapsulates an Array3D<double> object much like Grid2DObject for CArray2D<double> objects. Changes to Array3D<T>: * new constructor that copies a subspace of a given Array3D<T> object into the newly created one |
Commit 49, by Thomas Egger | |
Jul 21, 2009 | |
11 years 5 months | The new wind interpolation method that uses the local terrain's curvature has been merged. It comes from (Liston-Elder, 2006) and has been implemented by Gael Rosset (HES-SO) duri8ng his Bachelor internship. It still has to be tested in order to see |
Commit 48, by Mathias Bavay | |
11 years 5 months | Small fix in Array2D: GetSize is a const function (does not change the object) Grid2DObject and DEMObject: small fix of constructors and member function parameters. |
Commit 47, by Thomas Egger | |
Jul 20, 2009 | |
11 years 5 months | A new class has been created, DEMObject. It inherits from Grid2DObject but also contains DEM specific functionality: computation of slope, azimuth, normal vector's components and curvature. A new method has been created for both DEMObject and Grid2 |
Commit 46, by Mathias Bavay | |
11 years 5 months | Array3D memory layout: ROW-MAJOR, fully C-compatible |
Commit 45, by Thomas Egger | |
11 years 5 months | 1) Array3D implemented on basis of std::vector<T> with two Proxy classes in order to allow T[x][y][z]-like element access; the preferred way though is per T(x,y,z). 2) Removed the "operator=" in Array.h, Array2D.h and Array3D.h: it was rendered unn |
Commit 44, by Thomas Egger | |
Jul 16, 2009 | |
11 years 5 months | Now, NOSAFECHECKS is enabled for arrays (yes, we live the life to the extreme!!) A small warning has been fixed in the Inverse Vincenty calculation (possibly uninitialized value, but extremely remote possibility). The warnings for the marshalling f |
Commit 43, by Mathias Bavay | |
Jul 14, 2009 | |
11 years 6 months | Makefile.in corrected : no more PAROC ... ;-) |
Commit 42, by Laurent Winkler | |
Jul 12, 2009 | |
11 years 6 months | changed configure option --with-target=ARG to --with-destination=ARG in order to comply with terminology used throughout Makefile.in |
Commit 41, by Thomas Egger | |
11 years 6 months | autogen.sh checks for the presence of the autoconf tools and configure.ac stops if there is no pkg-config utility |
Commit 40, by Thomas Egger | |
Jul 11, 2009 | |
11 years 6 months | Autoconf update: * the autogen.sh script now accepts the clean cmd-line argument, cleaning up the mess that aclocal and autoconf leave * configure.ac - more refined tests for libraries (especially for IMISIO) |
Commit 39, by Thomas Egger | |
11 years 6 months | introduction of autoconf/automake into meteoio * execute ./autogen.sh to create a ./configure script * execute ./configure to create a Makefile * edits to the Makefile or only to be made in Makefile.in the following options to the configure script |
Commit 38, by Thomas Egger | |
Jul 10, 2009 | |
11 years 6 months | Fixed a compilation bug : oups |
Commit 37, by Laurent Winkler | |
11 years 6 months | Improvement of exception management for POP-C++ -> Replace THROW with throw |
Commit 36, by Laurent Winkler | |
Jul 7, 2009 | |
11 years 6 months | Fixed some warnings that were showing up on g++ 3.xx: *lack of virtual destructor for FilterValue (also missing for some other filters, but not triggering any warnings). A closer look would be welcomed into these destructors... *unsigned ints are |
Commit 35, by Mathias Bavay | |
11 years 6 months | The doxygen code has been cleaned up in order to fix several warnings and several issues with the generated html documentation. A constant has been defined for holding the IMIS buffer size (in ImisIO.h). |
Commit 34, by Mathias Bavay | |
Jul 1, 2009 | |
11 years 6 months | Some bugs are fixed in ImisIO in order to allow having nodata when there're no records for a given station in a given date (without crashing). |
Commit 33, by Moustafa Mbengue |