Map Matching
file.cpp
Go to the documentation of this file.
1 #include "file.h"
2 
4 
5 int File::splitPath(QString fileGlobalPath)
6 {
7  if (fileGlobalPath.isEmpty()) {
8  return 0;
9  } else {
10  QStringList splitter = fileGlobalPath.split(".");
11 
12  QString pathWithoutExtension = splitter.at(0); //Path + fileName
13 
14  QStringList splitter2 = pathWithoutExtension.split("/");
15 
16  QString QSfileName = splitter2.at(splitter2.length() - 1);
17  fileName << splitter2.at(splitter2.length() - 1);
18 
19  filePath << pathWithoutExtension.left(pathWithoutExtension.length() - QSfileName.length());
20 
21  fileExtension << splitter.at(1).toLower();
22  return 1;
23  }
24 }
25 
26 int File::selectFilesToOpen(QString extensionFilter)
27 {
28  if (extensionFilter.isEmpty()) {
29  return 0;
30  }
31  QString path = QDir::homePath();
32  QStringList files;
33 
34  //Return null is cancel buttom is pressed
35  files = QFileDialog::getOpenFileNames(
36  NULL,
37  "Select one or more files to open",
38  path,
39  "Fichier ." + extensionFilter + " (*." + extensionFilter + ")");
40 
41  for (int i = 0; i < files.size(); ++i) {
42  QString temp = files.at(i);
43  splitPath(temp);
44  }
45  return 1;
46 }
47 
49 {
50  QString filters("ShapeFile (*.shp);;Text files (*.csv *.txt);;All files (*.*)");
51  QString defaultFilter("Text files (*.csv)");
52 
53  // UI Save File
54  QString fileGlobalPath = QFileDialog::getSaveFileName(0, "Save file", QDir::currentPath(),
55  filters, &defaultFilter);
56  return 1;
57 }
58 
59 int File::shp2csv(QString geometryType)
60 {
61  if (geometryType.isEmpty() || (geometryType != "Point" && geometryType != "Polyline")) {
62  return 0;
63  } else {
64  QString originPath;
65  QString destinationPath;
66  std::string gdalGeometryParam;
67 
68  if (geometryType == "Point") {
69  gdalGeometryParam = "AS_YX";
70  } else if (geometryType == "Polyline") {
71  gdalGeometryParam = "AS_WKT";
72  }
73 
74  for (int i = 0; i < filePath.size(); ++i) {
75  QString tempFilePath = filePath.at(i);
76  QString tempFileName = fileName.at(i);
77  QString tempFileExtension = fileExtension.at(i);
78 
79  originPath = tempFilePath + tempFileName + "." + tempFileExtension;
80  destinationPath = tempFilePath + tempFileName + "_L93.csv";
81 
82  std::string shpToCsv_command = "ogr2ogr -f CSV " + destinationPath.toStdString() + " " + originPath.toStdString() + " -t_srs EPSG:2154 -lco GEOMETRY=" + gdalGeometryParam;
83 
84  system(shpToCsv_command.c_str()); //shp wgs84 => csv Lambert 93
85 
86  fileName.replace(i, tempFileName + "_L93");
87  fileExtension.replace(i, "csv");
88  }
89  return 1;
90  }
91 }
QStringList fileName
Definition: file.h:54
int whereSave()
The UI to select the file&#39;s path to save.
Definition: file.cpp:48
File()
The File constructor.
Definition: file.cpp:3
QStringList filePath
Definition: file.h:53
QStringList fileExtension
Definition: file.h:55
int splitPath(QString fileGlobalPath)
The split function to split the path file to filePath, fileName, fileExtension attributes.
Definition: file.cpp:5
int shp2csv(QString geometryType)
The function to convert WGS84 ShapeFile(s) to Lambert 93 CSV(s)
Definition: file.cpp:59
int selectFilesToOpen(QString extensionFilter)
The UI to select the file&#39;s path to open.
Definition: file.cpp:26