Rev 1221 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1033 | werner | 1 | /******************************************************************************************** |
2 | ** iLand - an individual based forest landscape and disturbance model |
||
3 | ** http://iland.boku.ac.at |
||
4 | ** Copyright (C) 2009- Werner Rammer, Rupert Seidl |
||
5 | ** |
||
6 | ** This program is free software: you can redistribute it and/or modify |
||
7 | ** it under the terms of the GNU General Public License as published by |
||
8 | ** the Free Software Foundation, either version 3 of the License, or |
||
9 | ** (at your option) any later version. |
||
10 | ** |
||
11 | ** This program is distributed in the hope that it will be useful, |
||
12 | ** but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
13 | ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||
14 | ** GNU General Public License for more details. |
||
15 | ** |
||
16 | ** You should have received a copy of the GNU General Public License |
||
17 | ** along with this program. If not, see <http://www.gnu.org/licenses/>. |
||
18 | ********************************************************************************************/ |
||
884 | werner | 19 | #ifndef FMTREELIST_H |
20 | #define FMTREELIST_H |
||
21 | |||
22 | #include <QObject> |
||
885 | werner | 23 | #include "scriptglobal.h" |
912 | werner | 24 | #include "grid.h" |
885 | werner | 25 | class Tree; // forward |
912 | werner | 26 | class Expression; |
884 | werner | 27 | |
907 | werner | 28 | namespace ABE { |
885 | werner | 29 | class FMStand; |
884 | werner | 30 | |
31 | class FMTreeList : public QObject |
||
32 | { |
||
33 | Q_OBJECT |
||
34 | Q_PROPERTY(int stand READ standId) ///< return stand, -1 if not set |
||
1208 | werner | 35 | Q_PROPERTY(int count READ count) ///< return the number of trees that are currently loaded |
885 | werner | 36 | Q_PROPERTY(bool simulate READ simulate WRITE setSimulate) ///< if 'simulate' is true, trees are only marked for removal |
884 | werner | 37 | public: |
912 | werner | 38 | |
884 | werner | 39 | explicit FMTreeList(QObject *parent = 0); |
891 | werner | 40 | explicit FMTreeList(FMStand *stand, QObject *parent = 0); |
932 | werner | 41 | ~FMTreeList(); |
884 | werner | 42 | int standId() const { return mStandId; } |
889 | werner | 43 | void setStand(FMStand *stand); |
885 | werner | 44 | bool simulate() const {return mOnlySimulate; } |
45 | void setSimulate(bool do_simulate) {mOnlySimulate = do_simulate; } |
||
1208 | werner | 46 | int count() const { return mTrees.count(); } |
884 | werner | 47 | |
890 | werner | 48 | /// access the list of trees |
49 | const QVector<QPair<Tree*, double> > trees() const { return mTrees; } |
||
50 | |||
951 | werner | 51 | /// access to local grid (setup if necessary) |
52 | Grid<float> &localGrid() { prepareGrids(); return mLocalGrid; } |
||
53 | |||
884 | werner | 54 | signals: |
55 | |||
56 | public slots: |
||
57 | // loading of trees |
||
930 | werner | 58 | /// load all trees of the stand, return number of trees (living trees) |
884 | werner | 59 | int loadAll() { return load(QString()); } |
930 | werner | 60 | /// load all trees passing the filter, return number of trees (load only living trees) |
61 | int load(const QString &filter); |
||
884 | werner | 62 | |
885 | werner | 63 | /// load all trees of the stand and either kill or harvest trees that are marked for that operation. |
64 | int removeMarkedTrees(); |
||
884 | werner | 65 | |
66 | /** kill "number" of stems |
||
67 | * in the percentile interval "from" - "to". |
||
68 | * remove all if "number" is higher than the count. |
||
69 | * return the number of removed trees. */ |
||
885 | werner | 70 | // int killPct(int pctfrom, int pctto, int number); |
71 | // int killAll(); ///< kill all trees in the list |
||
884 | werner | 72 | /** kill 'fraction' of all trees with 'filter'=true */ |
885 | werner | 73 | // int kill(QString filter, double fraction); |
884 | werner | 74 | // management |
75 | /** kill "number" of stems |
||
76 | * in the percentile interval "from" - "to". |
||
77 | * remove all if "number" is higher than the count. |
||
78 | * Use the removal fractions set by the removeStem, removeBranch and removeFoliage properties. |
||
79 | * return the number of removed trees. */ |
||
885 | werner | 80 | // int managePct(int pctfrom, int pctto, int number); |
81 | // int manageAll(); ///< manage all trees in the list |
||
1070 | werner | 82 | /// kill (i.e., cut down and do not remove from the forest) the trees in the list, filtered with 'filter'. |
83 | int kill(QString filter); |
||
84 | |||
885 | werner | 85 | /** manage 'fraction' of all trees [0..1] with 'filter'. Return number of removed trees. */ |
86 | int harvest(QString filter=QString(), double fraction=1.); |
||
884 | werner | 87 | |
923 | werner | 88 | double percentile(int pct); ///< get value for the pct th percentile (1..100) |
885 | werner | 89 | // void killSaplings(MapGridWrapper *wrap, int key); ///< kill all saplings that are on the area denoted by 'key' of the given grid (script access) |
884 | werner | 90 | |
91 | /** hacky access function to resource units covered by a polygon. |
||
92 | the parameters are "remove-fractions": i.e. value=0: no change, value=1: set to zero. */ |
||
885 | werner | 93 | // void removeSoilCarbon(MapGridWrapper *wrap, int key, double SWDfrac, double DWDfrac, double litterFrac, double soilFrac); |
884 | werner | 94 | /** slash snags (SWD and otherWood-Pools) of polygon 'key' on the map 'wrap'. |
95 | @param slash_fraction 0: no change, 1: 100% |
||
96 | */ |
||
885 | werner | 97 | // void slashSnags(MapGridWrapper *wrap, int key, double slash_fraction); |
951 | werner | 98 | /** sort the list according to 'statement'. Note that sorting is in ascending order. To |
99 | * have e.g. tallest trees first in the list, use '-height'. |
||
100 | */ |
||
923 | werner | 101 | void sort(QString statement); ///< sort trees in the list according to a criterion |
885 | werner | 102 | // int filter(QString filter); ///< apply a filter on the list of trees (expression), return number of remaining trees. |
103 | // int filterIdList(QVariantList idList); ///< apply filter in form of a list of ids, return number of remaining trees |
||
923 | werner | 104 | void randomize(); ///< random shuffle of all trees in the list |
884 | werner | 105 | |
106 | /// calculate the mean value for all trees in the internal list for 'expression' (filtered by the filter criterion) |
||
107 | double mean(QString expression, QString filter=QString()) { return aggregate_function( expression, filter, "mean"); } |
||
108 | /// calculate the sum for all trees in the internal list for the 'expression' (filtered by the filter criterion) |
||
109 | double sum(QString expression, QString filter=QString()) { return aggregate_function( expression, filter, "sum"); } |
||
110 | |||
912 | werner | 111 | /// set up internally a map (10m grid cells) of the stand |
112 | /// with a given grid type or using a custom expression. |
||
113 | void prepareStandGrid(QString type, QString custom_expression=QString()); |
||
913 | werner | 114 | void exportStandGrid(QString file_name); |
115 | FloatGrid &standGrid() {return mStandGrid; } |
||
912 | werner | 116 | |
117 | |||
884 | werner | 118 | private: |
887 | werner | 119 | bool trace() const; |
885 | werner | 120 | /// |
884 | werner | 121 | int remove_percentiles(int pctfrom, int pctto, int number, bool management); |
122 | int remove_trees(QString expression, double fraction, bool management); |
||
123 | double aggregate_function(QString expression, QString filter, QString type); |
||
930 | werner | 124 | bool remove_single_tree(int index, bool harvest=true); |
932 | werner | 125 | void check_locks(); |
884 | werner | 126 | |
912 | werner | 127 | // grid functions |
128 | void prepareGrids(); |
||
129 | /// run function 'func' for all trees in the current tree list of the stand. |
||
130 | /// signature: function(&ref_to_float, &ref_to_int, *tree); |
||
131 | /// after all trees are processed, func is called again (aggregations, ...) with tree=0. |
||
132 | void runGrid(void (*func)(float &, int &, const Tree *, const FMTreeList *) ); |
||
133 | |||
134 | QVector<QPair<Tree*, double> > mTrees; ///< store a Tree-pointer and a value (e.g. for sorting) |
||
932 | werner | 135 | bool mResourceUnitsLocked; |
884 | werner | 136 | int mRemoved; |
889 | werner | 137 | FMStand *mStand; /// the stand the list is currently connected |
884 | werner | 138 | int mStandId; ///< link to active stand |
885 | werner | 139 | int mNumberOfStems; ///< estimate for the number of trees in the stand |
140 | bool mOnlySimulate; ///< mode |
||
912 | werner | 141 | QRectF mStandRect; |
951 | werner | 142 | FloatGrid mStandGrid; ///< local stand grid (10m pixel) |
143 | Grid<int> mTreeCountGrid; ///< tree counts on local stand grid (10m) |
||
144 | Grid<float> mLocalGrid; ///< 2m grid of the stand |
||
912 | werner | 145 | Expression *mRunGridCustom; |
146 | double *mRunGridCustomCell; |
||
147 | friend void rungrid_custom(float &cell, int &n, const Tree *tree, const FMTreeList *list); |
||
923 | werner | 148 | |
149 | friend class ActThinning; |
||
884 | werner | 150 | }; |
151 | |||
152 | } // namespace |
||
153 | #endif // FMTREELIST_H |