9 lines
317 B
Bash
Executable file
9 lines
317 B
Bash
Executable file
#!/bin/sh
|
|
|
|
FROM="2025-11-22T13:00:00.000Z"
|
|
TO="2025-11-28T19:30:00.000Z"
|
|
URL="https://whereis.chandlerswift.com/api/0/locations?from=$FROM&to=$TO&format=geojson&user=chandler&device=oneplus9"
|
|
|
|
curl --silent "$URL" \
|
|
| python "$(dirname $0)/../../../util/process_owntracks_geojson_to_line.py" \
|
|
> data.geojson
|