Skip to content

Commit

Permalink
Merge pull request #390 from internetofwater/ew-dev
Browse files Browse the repository at this point in the history
modified st_union to st_memunion for basin query
  • Loading branch information
ewojtylko authored Jan 10, 2024
2 parents 495e10c + 0515a77 commit b63e73b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/resources/mybatis/stream.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@
)
select <choose>
<when test="simplified == true">
st_asgeojson(st_simplify(st_union(catchmentsp.the_geom), .001), 9, 0) shape
st_asgeojson(st_simplify(st_memunion(catchmentsp.the_geom), .001), 9, 0) shape
</when>
<otherwise>
st_asgeojson(st_union(catchmentsp.the_geom), 9, 0) shape
st_asgeojson(st_memunion(catchmentsp.the_geom), 9, 0) shape
</otherwise>
</choose>
from navigation_results
Expand Down

0 comments on commit b63e73b

Please sign in to comment.