diff --git a/apps/eew/scfinder/main.cpp b/apps/eew/scfinder/main.cpp index 5ba34c0..b195cab 100644 --- a/apps/eew/scfinder/main.cpp +++ b/apps/eew/scfinder/main.cpp @@ -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 += " "; @@ -1028,7 +1028,7 @@ class App : public Client::StreamApplication { faultgeom += ", "; } } - faultgeom += "))"; + faultgeom += ")))"; smRupture->setRuptureGeometryWKT(faultgeom); }