7 if (fileGlobalPath.isEmpty()) {
10 QStringList splitter = fileGlobalPath.split(
".");
12 QString pathWithoutExtension = splitter.at(0);
14 QStringList splitter2 = pathWithoutExtension.split(
"/");
16 QString QSfileName = splitter2.at(splitter2.length() - 1);
17 fileName << splitter2.at(splitter2.length() - 1);
19 filePath << pathWithoutExtension.left(pathWithoutExtension.length() - QSfileName.length());
28 if (extensionFilter.isEmpty()) {
31 QString path = QDir::homePath();
35 files = QFileDialog::getOpenFileNames(
37 "Select one or more files to open",
39 "Fichier ." + extensionFilter +
" (*." + extensionFilter +
")");
41 for (
int i = 0; i < files.size(); ++i) {
42 QString temp = files.at(i);
50 QString filters(
"ShapeFile (*.shp);;Text files (*.csv *.txt);;All files (*.*)");
51 QString defaultFilter(
"Text files (*.csv)");
54 QString fileGlobalPath = QFileDialog::getSaveFileName(0,
"Save file", QDir::currentPath(),
55 filters, &defaultFilter);
61 if (geometryType.isEmpty() || (geometryType !=
"Point" && geometryType !=
"Polyline")) {
65 QString destinationPath;
66 std::string gdalGeometryParam;
68 if (geometryType ==
"Point") {
69 gdalGeometryParam =
"AS_YX";
70 }
else if (geometryType ==
"Polyline") {
71 gdalGeometryParam =
"AS_WKT";
74 for (
int i = 0; i <
filePath.size(); ++i) {
75 QString tempFilePath =
filePath.at(i);
76 QString tempFileName =
fileName.at(i);
79 originPath = tempFilePath + tempFileName +
"." + tempFileExtension;
80 destinationPath = tempFilePath + tempFileName +
"_L93.csv";
82 std::string shpToCsv_command =
"ogr2ogr -f CSV " + destinationPath.toStdString() +
" " + originPath.toStdString() +
" -t_srs EPSG:2154 -lco GEOMETRY=" + gdalGeometryParam;
84 system(shpToCsv_command.c_str());
86 fileName.replace(i, tempFileName +
"_L93");
int whereSave()
The UI to select the file's path to save.
File()
The File constructor.
QStringList fileExtension
int splitPath(QString fileGlobalPath)
The split function to split the path file to filePath, fileName, fileExtension attributes.
int shp2csv(QString geometryType)
The function to convert WGS84 ShapeFile(s) to Lambert 93 CSV(s)
int selectFilesToOpen(QString extensionFilter)
The UI to select the file's path to open.