Skip to content

Latest commit

 

History

History
81 lines (44 loc) · 2.87 KB

File metadata and controls

81 lines (44 loc) · 2.87 KB

Commonly used datasets

Temporal Signatures

Tweets

Command to rejoin the file splits:

cat geotagged_tweets2020-2021/geotagged_tweets2020-2021.tar.gz.part* > geotagged_tweets2020-2021/geotagged_tweets2020-2021.tar.gz

Strava Activities

Command to rejoin the file splits:

cat strava_activities/strava_activities2023.dump.tar.gz.enc.part* > strava_activities/strava_activities2023.dump.tar.gz.enc

openssl enc -aes-256-cbc -d -in strava_activities/strava_activities2023.dump.tar.gz.enc | tar xzvf

Foursquare Check-ins

Command to rejoin the file splits:

cat foursquare_checkins/foursquare_checkins.dump.tar.gz.enc.part* > foursquare_checkins/foursquare_checkins.dump.tar.gz.enc

openssl enc -aes-256-cbc -d -in foursquare_checkins/foursquare_checkins.dump.tar.gz.enc | tar xzvf	

TripAdvisor Attractions

Command to rejoin the file splits:

cat tripadvisor_attractions/tripadvisor2020.dump.tar.gz.enc.part* > tripadvisor_attractions/tripadvisor2020.dump.tar.gz.enc

openssl enc -aes-256-cbc -d -in tripadvisor_attractions/tripadvisor2020.dump.tar.gz.enc | tar xzvf	

Places of Interest


Houston

London

Los Angeles

Montreal

New York City

Seattle

Washington, D.C.

Code to encrypt file before splitting:

openssl enc -aes-256-cbc -pbkdf2 -iter 100000 -e file.tar.gz > file.tar.gz.enc