我的目标是解析www.worldtides.info的结果。我有一个Raspberry Pi 2,我正在用Linux编写脚本。
我有一个API密钥,curl请求类似于:
curl -s "http://www.worldtides.info/api?extremes&lat=my_latitude&lon=my_longitude&key=my_api_key"
得到这样的结果:
{
"status": 200,
"requestLat": "my_latitude",
"requestLon": "my_longitude",
"extremes": [
{
"dt": 1459680132,
"date": "2016-04-03T10:42+0000",
"height": 0.7343567325036922,
"type": "High"
},
{
"dt": 1459702028,
"date": "2016-04-03T16:47+0000",
"height": -0.8438121322770741,
"type": "Low"
},
{
"dt": 1459724478,
"date": "2016-04-03T23:01+0000",
"height": 1.0419712550773803,
"type": "High"
},
{
"dt": 1459747135,
"date": "2016-04-04T05:18+0000",
"height": -1.1049607153344834,
"type": "Low"
},
{
"dt": 1459769354,
"date": "2016-04-04T11:29+0000",
"height": 1.1012796430343657,
"type": "High"
},
{
"dt": 1459791366,
"date": "2016-04-04T17:36+0000",
"height": -1.204313872235808,
"type": "Low"
},
{
"dt": 1459813613,
"date": "2016-04-04T23:46+0000",
"height": 1.3452661348073778,
"type": "High"
},
{
"dt": 1459835931,
"date": "2016-04-05T05:58+0000",
"height": -1.4062688322894952,
"type": "Low"
}
]
}
使用jq,我想获得当天和明天的涨潮和低潮时间,但是当我尝试这个时:
.result[].type
但它给了我一个错误:
jq: error (at <stdin>:0): Cannot iterate over null (null)`
我知道我可以得到它正在使用的潮流类型:
.extremes[].type
结果是:
High
Low
etc...
和潮汐时间使用:
.extremes[].date
结果是:
2016-04-03T10:42+0000
2016-04-03T16:47+0000
etc...
那么,如何将结果组合在一起以获得这样的输出?
2016-04-03T10:42+0000 High
2016-04-03T16:47+0000 Low
etc...
答案 0 :(得分:1)
的内容
curl -s "http://www.worldtides.info/api?extremes&lat=my_latitude&lon=my_longitude&key=my_api_key"| jq -r ".extremes[] | .date + .type"
应该为您提供两者每个条目的日期/时间和高/低潮输出。
基本,您需要使用extremes
NOT result
。 没有 result
密钥,因此jq
会向您发送有关null
的消息。