GEOJSON_PARSE_ERROR 오류 클래스
GeoJSON 구문 분석 오류: <parseError>
위치 <pos>
매개 변수
- parseError: 발생한 구문 분석 오류에 대한 설명
- pos: 구문 분석 오류가 발생한 GeoJSON 문자열의 1부터 시작하는 위치.
설명
일부 지리 공간 함수는 입력을 구문 분석할 때 이 오류를 반환할 수 있으며 이는 GeoJSON 형식이어야 합니다. GeoJSON 형식에 대해 자세히 알아보세요.
예제
-- Feeding an empty point in GeoJSON format into the h3_polyfillash3 function (as opposed to a polygon or multipolygon).
> SELECT h3_polyfillash3('{"type":"Point","coordinates":[]}', 2)
[GEOJSON_PARSE_ERROR] Error parsing GeoJSON: Invalid or unsupported type '"Point"' at position 9
-- Feeding an polygon with invalid GeoJSON (missing closing } at the end)
> SELECT H3_PolyfillAsH3('{"type":"Polygon","coordinates":[[[-122.4194,37.7749],[-118.2437,34.0522],[-74.0060,40.7128],[-122.4194,37.7749]]]', 2)
[GEOJSON_PARSE_ERROR] Error parsing GeoJSON: Unexpected end of GeoJSON string at position 115
오류 클래스를 내보내는 함수
- h3_coverash3 함수
- h3_coverash3string 함수
- h3_pointash3 함수
- h3_pointash3string 함수
- h3_polyfillash3 함수
- h3_polyfillash3string 함수
- h3_tessellateaswkb 함수