Sdílet prostřednictvím


GEOJSON_PARSE_ERROR třída chyby

SQLSTATE: 22023

Chyba při analýze GeoJSON: <parseError> na pozici <pos>

Parametry

  • parseError: Popis zjištěné chyby analýzy
  • pos: Pozice založená na 1 v řetězci GeoJSON, kde došlo k chybě analýzy.

Vysvětlení

Některé geoprostorové funkce můžou tuto chybu vrátit při analýze vstupu, která se očekává ve formátu GeoJSON. Přečtěte si další informace o formátu GeoJSON .

Příklady

-- 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

Funkce vygenerující třídu chyb