-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreportings2.cpp
91 lines (71 loc) · 2.69 KB
/
reportings2.cpp
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
#include "reportings2.h"
reportingS2::reportingS2()
{
}
void reportingS2::add1Tuile(catalogueSco * aTuile){
mMTuileAndDates.emplace(std::make_pair(aTuile->getTuileName(), aTuile->getAllDates()));
mMTuileNbDates.emplace(std::make_pair(std::make_pair(aTuile->getTuileName(),1000), 0));
}
void reportingS2::genReport(std::string aOut){
// compiler toutes les dates différentes
std::ofstream out;
out.open(aOut);
out <<"#1=utilise la prise de vue. 0=n'utilise pas (ennuagement)\n" ;
out <<"saisonVege;date;" ;
std::vector<year_month_day> allD;
for (auto kv : mMTuileAndDates){
for (year_month_day ymd: kv.second){
if (std::find(allD.begin(), allD.end(), ymd) == allD.end()){allD.push_back(ymd);}
}
// std::cout << " tuile " << kv.first << " comprends " << kv.second.size() << std::endl;
//std::cout << kv.first << ";" ;
out << kv.first << ";" ;
}
//std::cout << std::endl ;
out << "\n";
sort(allD.begin(), allD.end());
// maintenant on est prêt à faire notre tableau récapitulatif
year curY(0);
month mai{5}, avril{4};
for (year_month_day ymd : allD){
//std::cout <<ymd ;
out <<ymd.year() <<";" << ymd;
for (auto kv : mMTuileAndDates){
std::string tuile=kv.first;
if (ymd.year()!=curY){
curY=ymd.year();
}
bool e(0);
for (year_month_day ymd2: kv.second){
if (ymd==ymd2){
e=1;
mMTuileNbDates.at(std::make_pair(tuile,1000))+=1;
int season(curY);
if (ymd.month()<mai ){
season-=1;
}
std::pair<std::string,int> p(tuile,season);
if (mMTuileNbDates.find(p)==mMTuileNbDates.end()){
mMTuileNbDates.emplace(p,1);
}else{
mMTuileNbDates.at(p)+=1;
}
}
}
//std::cout <<";"<< e ;
out <<";"<< e ;
}
out <<"\n";
// std::cout << std::endl ;
}
//maintenant j'affiche le tableau reprennant le nombre de date par année et par tuile
for (auto kv : mMTuileNbDates){
std::string tuile=kv.first.first;
int y=kv.first.second;
int nb=kv.second;
std::string year("total");
if (y!=1000){year=std::to_string(y);}
out <<tuile << ";Season"<< year << ";" << nb << "\n";
}
out.close();
}