|
@@ -21,16 +21,37 @@
|
|
|
</select>
|
|
|
|
|
|
<select id="analysisHkPoint" resultType="com.shcd.boat.entity.HkShoreLine">
|
|
|
- SELECT DISTINCT ON (shore_line_points_space.id)
|
|
|
- haikang_space.id,
|
|
|
- shore_line_points_space.id AS shoreLineId,
|
|
|
- ROUND(ST_Distance(
|
|
|
- ST_Transform(haikang_space.point_geom, 4326)::geography,
|
|
|
- ST_Transform(shore_line_points_space.line_geom, 4326)::geography
|
|
|
- )::numeric, 2) AS distance
|
|
|
- FROM pdhw_space.haikang_space
|
|
|
- CROSS JOIN pdhw_space.shore_line_points_space
|
|
|
- ORDER BY shore_line_points_space.id, distance;
|
|
|
+-- SELECT DISTINCT ON (shore_line_points_space.id)
|
|
|
+-- haikang_space.id,
|
|
|
+-- shore_line_points_space.id AS shoreLineId,
|
|
|
+-- ROUND(ST_Distance(
|
|
|
+-- ST_Transform(haikang_space.point_geom, 4326)::geography,
|
|
|
+-- ST_Transform(shore_line_points_space.line_geom, 4326)::geography
|
|
|
+-- )::numeric, 2) AS distance
|
|
|
+-- FROM pdhw_space.haikang_space
|
|
|
+-- CROSS JOIN pdhw_space.shore_line_points_space
|
|
|
+-- ORDER BY shore_line_points_space.id, distance;
|
|
|
+
|
|
|
+ WITH candidates AS (SELECT hk.id AS id,
|
|
|
+ shore.id AS shoreLineId,
|
|
|
+ ST_Distance(
|
|
|
+ ST_Transform(hk.point_geom, 4326)::geography,
|
|
|
+ ST_Transform(shore.line_geom, 4326)::geography
|
|
|
+ ) AS distance
|
|
|
+ FROM pdhw_space.haikang_space hk
|
|
|
+ JOIN pdhw_space.shore_line_points_space shore
|
|
|
+ ON ST_DWithin(
|
|
|
+ ST_Transform(hk.point_geom, 4326)::geography,
|
|
|
+ ST_Transform(shore.line_geom, 4326)::geography,
|
|
|
+ 1000
|
|
|
+ ))
|
|
|
+ SELECT DISTINCT
|
|
|
+ ON (shoreLineId)
|
|
|
+ id,
|
|
|
+ shoreLineId,
|
|
|
+ ROUND(distance:: numeric, 2) AS distance
|
|
|
+ FROM candidates
|
|
|
+ ORDER BY shoreLineId, distance
|
|
|
|
|
|
</select>
|
|
|
</mapper>
|