Created
July 25, 2021 03:32
-
-
Save git-shogg/63b9e5bca8abb0d07566c1e7814e3bb2 to your computer and use it in GitHub Desktop.
Google_Timeline_Summary-Step_02.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################################################################### | |
# 2. User Inputs # | |
############################################################################### | |
start_year, start_month, start_day = 2021, 6, 30 | |
end_year, end_month, end_day = 2021, 7, 25 | |
point_of_interest = (-77.85, 166.64) # Latitude, Longitude | |
distance_from_point_of_interest = 0.1 | |
aggregate_by = 'Day' # This can be 'Year', 'Month', 'Day', 'Hour', 'Second' | |
weekday_exceptions = ['Saturday','Sunday'] # A list of weekdays that should excluded. | |
# Reformat the start/end datetimes to epoch times in milliseconds | |
start_datetime = datetime.datetime(start_year,start_month,start_day).timestamp()*1e3 | |
end_datetime = datetime.datetime(end_year,end_month,end_day).timestamp()*1e3 | |
# Setup the aggregate list | |
aggregate_options = ['Year','Month','Day','Hour','Second'] | |
aggregate_list = aggregate_options[:aggregate_options.index(aggregate_by)+1] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment