Skip to content

Commit 8b3a1cd

Browse files
authored
Modify bounding box in pair search example
Updated bounding box coordinates for pair search example. closes #12
1 parent 4859eed commit 8b3a1cd

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -98,16 +98,15 @@ The `filter` is the core of this extension. It allows you to express conditions
9898
This example finds pairs of `ENVISAT.ASA.IMS_1P` items within a specific area and time window, where the time difference between the paired items is less than 35 days.
9999

100100
```bash
101-
curl -X POST "http://localhost:8080/pair-search" \
101+
curl -X POST "http://localhost:8082/pair-search" \
102102
-H "Content-Type: application/json" \
103103
-d '{
104104
"first-collections": ["ENVISAT.ASA.IMS_1P"],
105-
"first-bbox": [13.0, 48.0, 14.5, 49.0],
106-
"first-datetime": "2010-01-01T00:00:00Z/2010-03-31T23:59:59Z",
105+
"first-bbox": [6.0, 43.0, 7.5, 44.0],
107106
"second-collections": ["ENVISAT.ASA.IMS_1P"],
108-
"second-bbox": [13.0, 48.0, 14.5, 49.0],
109-
"limit": 50,
110-
"filter
107+
"second-bbox": [6.0, 43.0, 7.5, 44.0],
108+
"limit": 50
109+
}'
111110
```
112111

113112
---

0 commit comments

Comments
 (0)