trim_json_decimal
在GeoJSON文件中,请在坐标小数点后保留5位数字。
Original
{
"geometry": {
"type": "Point",
"coordinates": [
31.763246540000001,
68.570144650000003
]
},
"type": "Feature",
"properties": {}
}
Processed
{
"geometry": {
"type": "Point",
"coordinates": [
31.76324,
68.57014
]
},
"type": "Feature",
"propert
2022-05-07 15:07:16
14.43MB
1