• 두 점 사이의 Great Circle(대원)을 가로지르는 경로를 계산하는 함수입니다. 시작점과 끝점이 경도 180도에 걸쳐 있는 경우 결과값이 MultiLineString Feature로 분할됩니다.

    Parameters

    • start: PointGeo | Feature<Point, {
          [name: string]: any;
      }> | Coord

      경로의 시작점 또는 그 좌표입니다.

    • end: PointGeo | Feature<Point, {
          [name: string]: any;
      }> | Coord

      경로의 끝점 또는 그 좌표입니다.

    • Optional options: GreatCircleOptions

      greatCircle 함수에서 사용하는 옵션입니다.

    Returns Feature<LineString | MultiLineString, {
        [name: string]: any;
    }>

    계산된 LineString Feature 결과입니다.

    Example

    const start:ktGms.geometry.PointGeo = new ktGms.geometry.PointGeo([127, 38],{});
    const end:ktGms.geometry.PointGeo = new ktGms.geometry.PointGeo([125, 34],{});
    const res = analysis.measurement.greatCircle(start, end, {npoints: 50})

Generated using TypeDoc