我想将geojson文件转换为sql文件。
我不知道如何继续。
事实上,我将所有标记都放入了一个我要转换成的geojson中
一个SQL脚本。然后我将使用REST API访问它。
我的GeoJson看起来像这样:
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
2.35567957,
48.8298227
]
},
"properties": {
"name": "140 avenue d'Italie à Paris"
}
}
]
}
使用https://sqlizer.io,它给了我:
CREATE TABLE Markers (
`type` VARCHAR(17) CHARACTER SET utf8,
`features_type` VARCHAR(7) CHARACTER SET utf8,
`features_geometry_type` VARCHAR(5) CHARACTER SET utf8,
`features_geometry_coordinates` NUMERIC(10, 8),
`features_properties_name` VARCHAR(27) CHARACTER SET utf8);
INSERT INTO Markers VALUES
('FeatureCollection','Feature','Point',2.35567957,NULL);
INSERT INTO Markers VALUES
('FeatureCollection','Feature','Point',48.8298227,'140 avenue d''Italie
à Paris');
哪个不正确。
我怎样才能获得一些我以后可以用作geojson基础的东西?
感谢您的回答! 我希望这足够详细!