-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.cpp
307 lines (176 loc) · 5.34 KB
/
main.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
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
#include <iostream>
#include <string>
#include <fstream>
#include <deque>
#include <sstream>
#include <cstdlib>
#include <cmath>
#include <algorithm>
#include <string>
#include <proj_api.h>
#include "affichage_console.h"
#include "../../../noyau/calcul_geodesique.h"
#include "outils.h"
#include <liblas/liblas.hpp>
int Convertion(double &x,
double &y,
double &z,
unsigned long int EPSG_In,
unsigned long int EPSG_Out)
{
std::string input="+init=epsg:"+outils::ToString(EPSG_In);
std::string output="+init=epsg:"+outils::ToString(EPSG_Out);
projPJ source = pj_init_plus(input.c_str());
projPJ target = pj_init_plus(output.c_str());
if(source==NULL || target==NULL)
return 1;
int success = pj_transform(source, target, 1, 1, &x, &y, &z );
return success;
}
//---------------------------------------------------------------------------------------------
int main(int argc, char **argv)
{
// quelques exemples d'EPSG
// RGF93 4171 coordonnees sur l ellipsoide (latitude longitude)
// RGF 93 CC45 3945
// RGF93 L93 2154
std::string message_erreur="erreur attendu nom_exe fichier_las_in fichier_las_out epsg_in epsg_out type_unite_entree (0 radian/metres 1-> degrees decimaux) type_unite_sortie (0 radian metre 1 -> degrees decimaux)";
affichage_console::afficheLogoSncf();
if(argc!=7)
{
std::cerr<<message_erreur<<std::endl;
return 1;
}
std::string fichier_in_las=argv[1];
std::string fichier_out_las=argv[2];
unsigned long int EPSG_IN=std::atoi(argv[3]);
unsigned long int EPSG_OUT=std::atoi(argv[4]);
unsigned long int type_entree=std::atoi(argv[5]); // 0 metres ou des radians 1 degrees decimaux
unsigned long int type_sortie=std::atoi(argv[6]); // 0 metres ou des radians 1 degree decimaux
std::string input="+init=epsg:"+outils::ToString(EPSG_IN);
std::string output="+init=epsg:"+outils::ToString(EPSG_OUT);
projPJ source = pj_init_plus(input.c_str());
projPJ target = pj_init_plus(output.c_str());
if(source==NULL || target==NULL)
{
std::cerr<<"erreur a la definition de la projection"<<std::endl;
return 1;
}
// je cree les flux
std::ifstream ifs(fichier_in_las.c_str(), std::ios::in | std::ios::binary);
if(ifs.fail())
{
std::cerr<<"erreur d ouvrir un flux de lecture pour "<<fichier_in_las<<std::endl;
return 1;
}
liblas::ReaderFactory f;
liblas::Reader reader = f.CreateWithStream(ifs);
liblas::Header header = reader.GetHeader();
std::ofstream flux_out(fichier_out_las.c_str(),std::ios::out|std::ios::trunc|std::ios::binary);
if(flux_out.fail())
{
std::cerr<<"erreur a l ouverture du flux pour "<<fichier_out_las<<std::endl;
return 1;
}
// modification du header
liblas::Header header_writer = header;
double x_offset=header.GetOffsetX();
double y_offset=header.GetOffsetY();
double z_offset=header.GetOffsetZ();
double x_max=header.GetMaxX();
double y_max=header.GetMaxY();
double z_max=header.GetMaxZ();
double x_min=header.GetMinX();
double y_min=header.GetMinY();
double z_min=header.GetMinZ();
if(type_entree==1)
{
x_offset=outils::DegToRad(x_offset);
y_offset=outils::DegToRad(y_offset);
x_max=outils::DegToRad(x_max);
y_max=outils::DegToRad(y_max);
x_min=outils::DegToRad(x_min);
y_min=outils::DegToRad(y_min);
}
if(0!=Convertion(x_offset,y_offset,z_offset,EPSG_IN,EPSG_OUT))
{
std::cerr<<"erreur a la convertion de coordonnee"<<std::endl;
return 1;
}
if(0!=Convertion(x_max,y_max,z_max,EPSG_IN,EPSG_OUT))
{
std::cerr<<"erreur a la convertion de coordonnee"<<std::endl;
return 1;
}
if(0!=Convertion(x_min,y_min,z_min,EPSG_IN,EPSG_OUT))
{
std::cerr<<"erreur a la convertion de coordonnee"<<std::endl;
return 1;
}
header_writer.SetSoftwareId("SNCF lidar tools");
if(type_sortie==0)
{
header_writer.SetScale(0.0001,
0.0001,
0.0001);
}
else if(type_sortie==1)
{
header_writer.SetScale(0.0000000001,
0.0000000001,
0.0001);
}
if(type_sortie==1)
{
x_offset=outils::RadToDeg(x_offset);
y_offset=outils::RadToDeg(y_offset);
x_max=outils::RadToDeg(x_max);
y_max=outils::RadToDeg(y_max);
x_min=outils::RadToDeg(x_min);
y_min=outils::RadToDeg(y_min);
}
header_writer.SetOffset(x_offset, y_offset, z_offset);
liblas::Bounds<double > mon_bounds(x_min,y_min,z_min,x_max,y_max,z_max);
header_writer.SetExtent(mon_bounds);
// ici d'autres modif eventuelles;
liblas::Writer writer(flux_out, header_writer);
unsigned long int compteur=0;
while (reader.ReadNextPoint())
{
compteur++;
if(compteur%1000000==0)
{
std::cerr<<"pts traite : "<<compteur<<std::endl;
}
liblas::Point const& p_read = reader.GetPoint();
liblas::Point p_write(&(writer.GetHeader()));;
p_write.SetData(p_read.GetData());
double x=p_read.GetX();
double y=p_read.GetY();
double z=p_read.GetZ();
if(type_entree==1)
{
x=outils::DegToRad(x);
y=outils::DegToRad(y);
z=outils::DegToRad(z);
}
//std::cerr<<x<<";"<<y<<","<<z<<std::endl;
if(0!=pj_transform(source, target, 1, 1, &x, &y, &z ))
{
std::cerr<<"erreur a la convertion de coordonnee"<<std::endl;
return 1;
}
if(type_sortie==1)
{
x=outils::RadToDeg(x);
y=outils::RadToDeg(y);
}
p_write.SetX(x);
p_write.SetY(y);
p_write.SetZ(z);
writer.WritePoint(p_write);
}
ifs.close();
std::cerr<<"succes"<<std::endl;
return 0;
}