• (Multi)LineString Feature 또는 (Multi)Polygon Feature와 BBox를 입력받아, 해당 BBox 영역에 해당되는 Feature 영역만 잘라내는 함수입니다.

    Parameters

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

    잘린 Feature 입니다.

    Example

    const polygon: ktGms.geometry.Polygon = new ktGms.geometry.Polygon(
    [
    [
    [126.97700432235615, 37.57605019879898],
    [126.97214608947786, 37.575858743873866],
    [126.97195820201864, 37.57413562740092],
    [126.97662854743771, 37.57217845909456],
    [126.98057418408416, 37.57305068175859],
    [126.97700432235615, 37.57605019879898],
    ],
    ],
    {}
    );
    const bbox = [126.97709320997825, 37.57037447675861, 126.98569889256545, 37.57749759620702];
    const cliped = analysis.transformation.bboxClip(polygon, bbox);

Generated using TypeDoc