我打電話獵戶座具有地理位置過濾器,像這樣的:更改訂單
(curl localhost:1026/v1/queryContext -s -S --header 'Content-Type: application/json' --header 'Accept: application/json' -d @- | python -mjson.tool) <<EOF
{
"entities": [
{
"type": "City",
"isPattern": "true",
"id": ".*"
}
],
"restriction": {
"scopes": [
{
"type" : "FIWARE::Location",
"value" : {
"circle": {
"centerLatitude": "40.418889",
"centerLongitude": "-3.691944",
"radius": "13500"
}
}
}
]
}
}
EOF
我返回的實體通過增加實體返回的fiware獵戶文件上讀/註冊創建時間。像是解釋here
有可能改變這種行爲?
最初發佈於https://github.com/telefonicaid/fiware-orion/issues/1246,由丹尼爾·岡薩雷斯Lareo撰寫 – fgalan