6061626364656667
Element result = dao.createSearchRequest(context).id(id).xmlResult(); if (result != null && !result.getChildren().isEmpty()) { return result; } } throw new RegionNotFoundEx(id); }
73747576777879
Geometry geom = dao.getGeom(context, id, simplified, Region.decodeCRS(srs)); if (geom != null) { return format.toElement(geom); } } throw new RegionNotFoundEx(id); }
149150151152153154155156157158159
if (geom != null) { break; } } if (geom == null) { throw new RegionNotFoundEx(id); } } else { GeomFormat format = GeomFormat.find(geomType); geom = format.parse(geomParam); if (!geomSrs.equals(srs)) {