次の方法で共有


GEOJSON_PARSE_ERROR エラー クラス

SQLSTATE: 22023

GeoJSON の解析中に位置 <pos> でエラー <parseError> が発生しました

パラメーター

  • 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

エラー クラスを出力する関数