와 내가 통해 필터링하고 MODE: D
속성을 가지고 features
을 선택 jq을 사용하고 싶습니다이 JSON을은 필터링 GeoJSON은 JQ
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"MODE": "A"
},
"geometry": {
"type": "Point",
"coordinates": [
-69.23583984375,
45.460130637921004
]
}
},
{
"type": "Feature",
"properties": {
"MODE": "D"
},
"geometry": {
"type": "Point",
"coordinates": [
-69.23651039600372,
45.46053888199693
]
}
}
]
}
을 감안할 때. 내가 알 수있는 한, 쿼리 jq .[] | select(.MODE == "D")
가 작동해야하지만 그렇지 않습니다!
무엇이 누락 되었습니까?
미리 감사드립니다.