我正在尝试手动设置空间参考,但是它崩溃了。
std::ofstream ofs;
liblas::Header header;
liblas::SpatialReference srs;
srs.SetFromUserInput("EPSG:4326"); // It crashes here
header.SetSRS(srs);
header.SetPointRecordsCount(1);
ofs.open("test.las", std::ios::out | std::ios::binary);
liblas::Writer writer(ofs, header);
有任何想法吗?
最佳答案
添加环境变量后问题已消失。
GDAL_DATA“C:\ OSGeo4W64 \ share \ epsg_csv”
关于c++ - 手动设置空间引用时,LibLas崩溃,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28407079/