• 타원의 중심 좌표, 장축, 단축의 길이를 입력받아 타원 모양의 Polygon Feature를 반환해주는 함수입니다.

    Parameters

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

      타원의 중심점 또는 그 좌표입니다.

    • xSemiAxis: number

      X축 방향의 장축(단축) 길이입니다.

    • ySemiAxis: number

      Y축 방향의 장축(단축) 길이입니다.

    • Optional options: EllipseOptions

      ellipse 함수의 옵션입니다.

    Returns Feature<Polygon, {
        [name: string]: any;
    }>

    타원 모양의 Polygon Feature입니다.

    Example

    const center = [126.97947370039435, 37.57483764262895]
    const xSemiAxis = 5
    const ySemiAxis = 2
    const ellipse = analysis.miscellaneous.ellipse(center, xSemiAxis, ySemiAxis)

Generated using TypeDoc