google_takeout: add semantic location history

This commit is contained in:
Sean Breckenridge 2023-03-03 18:32:52 -08:00
parent a4c713664e
commit 04842f7090
3 changed files with 96 additions and 0 deletions

View file

@ -89,6 +89,13 @@ class location:
export_path: Paths = ''
accuracy: float
class google_takeout_semantic:
# a value between 0 and 100, 100 being the most confident
# set to 0 to include all locations
require_confidence: float = 40
# default accuracy for semantic locations
accuracy: float = 100
from my.core.compat import Literal
class time: