次のような data.tsv ファイルがあるとします。
id code name
1 AL Alabama
2 AK Alaska
4 AZ Arizona
5 AR Arkansas
6 CA California
... ... ...
次のような topojson.json ファイルが与えられた場合: (構造は正しく、数値はランダムです)
{
"type":"Topology",
"transform":
{
"scale": [0.0015484881821515486,0.0010301030103010299],
"translate":[-5.491666666666662,41.008333333333354]
},
"objects":
{
"states":
{
"type":"GeometryCollection",
"geometries":
[
{"type":"Polygon","arcs":[[0]],"properties":{"code_2":"AL"}},
{"type":"Polygon","arcs":[[1]],"properties":{"code_2":"AK"}}
]
}
},
"arcs":
[
[[2466,9916],[-25,-5],[3,-13]],
[[2357,9852],[1,-2],[1,-2]]
]
}
共通フィールド(1)を使用して、他のフィールド(2)の値をjsonファイルに挿入する方法は?
1]:data.txt#code
とtopojson.txt.objects.states.geometries.properties.code_2
2]:data.txt#name
最終結果には以下が含まれている必要があります。
{"type":"Polygon","arcs":[[0]],"properties":{"code_2":"AL", "name":"Alabama" }},
{"type":"Polygon","arcs":[[1]],"properties":{"code_2":"AK", "name":"Alaska" }},
編集:受け入れられた答え:
topojson -o final.json -e data.tsv --id-property=code_2,code -p code_2,state=name -- topojson.json