Skip to content

Instantly share code, notes, and snippets.

@oxc
Created August 23, 2024 12:06
Show Gist options
  • Save oxc/fcd46d056437c7f1f50d600413fdc9f0 to your computer and use it in GitHub Desktop.
Save oxc/fcd46d056437c7f1f50d600413fdc9f0 to your computer and use it in GitHub Desktop.
Find all days in Google Location History on which you have been at a certain address
# Find all unique days in your Google Takeout Semantic Location History
# on which you have been at a specific address.
#
# Usage: days_at_address <addr> [history files...]
#
# Example:
#
# $ cd "Takeout/Location History (Timeline)/Semantic Location History"
# $ days_at_address "Königsplatz 1, 80333 München, Deutschland" 2023/*.json
# Output:
# "2023-03-23"
# "2023-07-12"
function days_at_address() {
local addr=$1
shift
jq --arg address "$addr" '.timelineObjects | .[]
| select(.placeVisit.location.address==$address)
| .placeVisit.duration.startTimestamp
| sub("(?<time>.*)\\.[\\d]{3}(?<tz>.*)"; "\(.time)\(.tz)")
| fromdate | strftime("%Y-%m-%d")' "$@" \
| sort -u
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment