|
@@ -21,37 +21,21 @@
|
|
|
</select>
|
|
|
|
|
|
<select id="analysisHkPoint" resultType="com.shcd.boat.entity.HkShoreLine">
|
|
|
-
|
|
|
- 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 DISTINCT ON (shore.id)
|
|
|
+ hk.id,
|
|
|
+ shore.id AS shoreLineId,
|
|
|
+ ROUND(ST_Distance(
|
|
|
+ ST_Transform(hk.point_geom, 4326)::geography,
|
|
|
+ ST_Transform(shore.line_geom, 4326)::geography
|
|
|
+ )::numeric, 2) 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
|
|
|
+ )
|
|
|
+ ORDER BY shore.id, distance
|
|
|
|
|
|
</select>
|
|
|
</mapper>
|