WKT_PARSE_ERROR 오류 클래스
WKT 구문 분석 오류: <parseError>
위치 <pos>
매개 변수
- parseError: 발생한 구문 분석 오류의 종류에 대한 설명
- pos: 구문 분석 오류가 발생한 WKT 문자열의 1부터 시작하는 위치.
설명
일부 지리 공간 함수는 WKT(잘 알려진 텍스트) 형식으로 예상되는 입력을 구문 분석할 때 이 오류를 반환할 수 있습니다. WKT에 대해 자세히 알아봅니다.
예제
-- Feeding an empty point in WKT format into the h3_polyfillash3 function (as opposed to a polygon or multipolygon).
> SELECT h3_polyfillash3('POINT EMPTY', 2)
[WKT_PARSE_ERROR] Error parsing WKT: Invalid or unsupported type 'POINT' at position 1
-- Feeding a polygon with less than 4 vertices into the h3_polyfillash3 function.
> SELECT h3_polyfillash3('POLYGON((-122.4194 37.7749,-118.2437 34.0522,-74.0060 40.7128))', 2)
[WKT_PARSE_ERROR] Error parsing WKT: Too few points in ring at position 63
오류 클래스를 내보내는 함수
- h3_coverash3 함수
- h3_coverash3string 함수
- h3_pointash3 함수
- h3_pointash3string 함수
- h3_polyfillash3 함수
- h3_polyfillash3string 함수
- h3_tessellateaswkb 함수