1
PostGISを使用してGeoJSON FeatureCollectionをPostgreSQLに保存しますか?
GeoJSONは初めてです。示されているGeoJSON機能コレクションがあり、それをpostgresテーブル(testtable)に保存したいと思います。私のpostgresテーブルには、シリアルIDとジオメトリ列があります。 { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ 2565453.1826721914, -3835048.659760314 ] } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ 2727584.7219710173, -3713449.1942418693 ], [ 2732476.691781269, -3992291.473426192 ] ] } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ …