案例三:JTS-线到线投影

26 篇文章 3 订阅

案例:线到线投影

示例

在线段l2上面做l1的投影

示例代码库
在这里插入图片描述

说明

通过LocationIndexedLine来实现;

借助locationIndexedLine.indexOf

l1上面的第一个形状点p1,投影到l2上面得到p11;

l1上面生的最后一个形状点Pn,投影到l2上面得到Pnn;

通过locationIndexedLine.extractLine(p2位置,Pn位置) 来截取生成投影对象 L11

示例代码

package com.leokok.jts.learning.jts.core.demo;

import org.locationtech.jts.geom.Coordinate;
import org.locationtech.jts.geom.Geometry;
import org.locationtech.jts.geom.LineString;
import org.locationtech.jts.io.ParseException;
import org.locationtech.jts.io.WKTReader;
import org.locationtech.jts.linearref.LinearLocation;
import org.locationtech.jts.linearref.LocationIndexedLine;

/**
 * 线到线投影
 */
public class LineToLineShadowTest {

    /**
     * 方式:
     * 1.1 通过 LocationIndexedLine来实现,
     * 1.2 locationIndexedLine.indexOf
     *       l1上面的第一个形状点p1,投影到l2上面得到p11;
     *       l1上面生的最后一个形状点Pn,投影到l2上面得到Pnn;
     * 1.3 通过locationIndexedLine.extractLine(p2位置,Pn位置) 来截取生成投影对象 L11
     * @return
     */
    public static void method1() throws ParseException {

        WKTReader wktReader = new WKTReader();

        //创建基准线L1
        Geometry l1 = wktReader.read("LINESTRING (115.805946 39.2572185, 115.8059521 39.2572183, 115.8059566 39.2572192, 115.805962 39.2572191, 115.8059678 39.2572183, 115.8059764 39.2572184, 115.8059806 39.2572192, 115.8059855 39.2572193, 115.8059884 39.2572182, 115.8059937 39.2572182, 115.8060005 39.2572196, 115.8060042 39.2572216, 115.8060075 39.2572206, 115.8060137 39.2572209)");
        LocationIndexedLine locationIndexedLine = new LocationIndexedLine(l1);

        //需要投影的线 l2
        Geometry l2 = wktReader.read("LINESTRING (115.80595615 39.2572154, 115.80595925 39.25721525, 115.805963 39.257216, 115.80597005 39.2572147, 115.8059741 39.25721525, 115.80597955 39.2572156, 115.80598315 39.2572162, 115.8059867 39.25721525, 115.805989 39.257215, 115.80599165 39.25721505)");

        //截取l2上面的始终点
        Coordinate p1 = l2.getCoordinates()[0];
        Coordinate Pn = l2.getCoordinates()[l2.getCoordinates().length-1];

        LinearLocation indexOfStart = locationIndexedLine.indexOf(p1);
        LinearLocation indexOfEnd = locationIndexedLine.indexOf(Pn);

        //投影后的起点、终点坐标
        System.out.println("p1起点映射后的P11:"+l2.getCoordinates()[indexOfStart.getSegmentIndex()]);
        System.out.println("Pn终点映射后的Pnn:"+l2.getCoordinates()[indexOfEnd.getSegmentIndex()]);

        //截取线段
        Geometry L11 = locationIndexedLine.extractLine(indexOfStart, indexOfEnd);

        System.out.println("l2投影到l1对象l22:"+L11.toText());

        //p1起点映射后的P11:(115.80595925, 39.25721525, NaN)
        //Pn终点映射后的Pnn:(115.805989, 39.257215, NaN)
        //l2投影到l1对象l22:LINESTRING (115.80595543653845 39.25721896730769, 115.8059566 39.2572192, 115.805962 39.2572191, 115.8059678 39.2572183, 115.8059764 39.2572184, 115.8059806 39.2572192, 115.8059855 39.2572193, 115.8059884 39.2572182, 115.80599165 39.2572182)


    }

    public static void main(String[] args) throws ParseException {
        //通过 LocationIndexedLine来实现
        LineToLineShadowTest.method1();
    }
}

效果

在这里插入图片描述

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 3
    评论
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值