Scan 50km Ads

This commit is contained in:
fred 2023-09-28 19:57:55 +02:00
parent 5d4798f331
commit 9c3ad6bf08
1 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,29 @@
#!/bin/bash
LAT=$1
LON=$2
if [[ "${LON}" && "${LAT}" ]]; then
curl -sk -XPOST 'https://data.gchange.fr/market/record/_search?pretty&_source=title' -d '
{
"size": 100,
"query": {
"bool": {
must: {
match_all: {}
},
"filter": [{
"geo_distance": {
"distance": "50km",
"geoPoint": {
"lat": '${LAT}',
"lon": '${LON}'
}
}
}]
}
}
}' | jq
else
echo "Aucune coordonnées. Indiquez LAT LON à votre requete"
fi