Skip to content

Commit 914cf81

Browse files
author
Phil Varner
authored
Merge pull request #311 from philvarner/pv/is-null-args
fix filter extension is null example
2 parents 7e4e106 + dc770e1 commit 914cf81

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fragments/filter/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -930,11 +930,11 @@ filter=sentinel:data_coverage > 50 OR landsat:coverage_percent < 10 OR (sentinel
930930
"args": [
931931
{
932932
"op": "isNull",
933-
"args": { "property": "sentinel:data_coverage" }
933+
"args": [ { "property": "sentinel:data_coverage" } ]
934934
},
935935
{
936936
"op": "isNull",
937-
"args": { "property": "landsat:coverage_percent" }
937+
"args": [ { "property": "landsat:coverage_percent" } ]
938938
}
939939
]
940940
}

0 commit comments

Comments
 (0)