DianLi/DEM_GeneRas/main.cpp
2023-03-13 16:13:20 +08:00

17 lines
448 B
C++

#include "DEM_GeneRas.h"
#include <QtWidgets/QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QString gdal_path = qApp->applicationDirPath().toLocal8Bit() + "/share/gdal";
QString pro_lib_path = qApp->applicationDirPath().toLocal8Bit() + "/share/proj";
qputenv("GDAL_DATA", gdal_path.toLocal8Bit());
qputenv("PROJ_LIB", pro_lib_path.toLocal8Bit());
VegePredict w;
w.CenterWidget()->show();
return a.exec();
}