我正在尝试创建一个将日期作为参数的函数,该函数仅显示数据。这是用leaflet
映射的。
时间序列数据如下:
(位于JSON
中)
Time - DetectorID
0 - 5
1 - 3
2 - 4
和数据映射到的geoJson
如下:
var myGeojsonData =
{
"features": [
{
"geometry": {
"coordinates": [
144.829434,
-37.825233
],
"type": "Point"
},
"properties": {
"Area": "Combined Entry MVT on Grieve Pde, West Gate Fwy North Ramps, Grieve Pde Byp Start EB between Grieve ",
"IDnumber": "DetectorID"
},
"type": "Feature"
},...etc
我正在尝试使用以下javascript
代码从时间序列中获取数据。
function selectdata(Time,timeseriesdata) {
output = timeseries.Time["(Time)"]
return output(time)
}
答案 0 :(得分:0)
我使用了pandas函数将其从数据帧转换为Json。