pythonで生成して、dumpするJSONの前後に、特殊なタグを加えたいです。
(data='{ と }'です)
しかし普通に書くと、どうしてもstringになってしまい、jsonで書きだすことができません。
どのような手段がありますでしょうか。お知恵をいただけますと幸いです。
data='{ ←つけたいタグ
以下pythonで生成したJSON
{ "type": "FeatureCollection",
"crs": { "type": "name",
"properties": {
"name": "urn:ogc:def:crs:OGC:1.3:CRS84"
}
},
"features": [
{ "type": "Feature",
"properties": { },
"geometry": {
"type": "MultiPoint",
"coordinates": [[138.7309, 35.3628], [138.8079, 35.1983],[139.0248, 35.2248]]
}
},
{ "type": "Feature",
"properties": { },
"geometry": {
"type": "LineString",
"coordinates": [[138.7309, 35.3628], [138.8079, 35.1983],[139.0248, 35.2248]]
}},
{ "type": "Feature",
"properties": { },
"geometry": {
"type": "Polygon",
"coordinates": [[[138.7309, 35.3628],[138.8079, 35.1983],[139.0248, 35.2248],[138.7309, 35.3628]]]
}}
]
}
以上pythonで生成したjson
}'←つけたいタグ
回答1件
あなたの回答
tips
プレビュー