Skip to content
Snippets Groups Projects
Commit 43dcbb16 authored by Tom Fischer's avatar Tom Fischer
Browse files

[A/IO/AsciiRasterInterface] Reduce scope of std::vector values

parent ed45492b
No related branches found
No related tags found
No related merge requests found
......@@ -268,12 +268,13 @@ GeoLib::Raster* AsciiRasterInterface::getRasterFromXyzFile(
return nullptr;
}
std::vector<double> values;
auto coords = readCoordinates(in);
if (coords == std::nullopt)
{
return nullptr;
}
std::vector<double> values;
values.push_back((*coords)[2]);
auto coords2 = readCoordinates(in);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment