Skip to content

Commit

Permalink
Re-adding #64 from @jenrandrews (sorry)
Browse files Browse the repository at this point in the history
  • Loading branch information
FMassin committed Nov 29, 2024
1 parent 3fc4828 commit afb6526
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/eew/scfinder/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1017,7 +1017,7 @@ class App : public Client::StreamApplication {
}

{
string faultgeom = "POLYGON Z ((";
string faultgeom = "MULTIPOLYGON Z (((";
for (size_t i = 0; i < finder->get_finder_rupture_list().size(); i++) {
faultgeom += Core::toString(finder->get_finder_rupture_list()[i].get_lon());
faultgeom += " ";
Expand All @@ -1028,7 +1028,7 @@ class App : public Client::StreamApplication {
faultgeom += ", ";
}
}
faultgeom += "))";
faultgeom += ")))";
smRupture->setRuptureGeometryWKT(faultgeom);
}

Expand Down

0 comments on commit afb6526

Please # to comment.