Category Archives: Social Data Analysis

Delete Duplicate Files With Bash

I needed to delete all but 1 duplicate files from a bunch of experiments. I didn't care about file names. Here's the bash - it works. #!/bin/bash declare -a list=( `find ./DIRECTORY_CONTAINING_FILES f` ); declare -a sums; cnt=${#list[@]} echo "creating … Continue reading

Posted in Programming, Simulation, Social Data Analysis, useful | 2 Comments

Simple Distributed Community Detection for The One Simulator

In the implementation of the Simple algorithm [Distributed Community Detection in Delay Tolerant Networks Pan Hui, Eiko Yoneki, Shu-yan Chan and Jon Crowcroft Sigcomm Workshop MobiArch '07, August, Kyoto, Japan] by PJ Dillon for The One Simulator, updates to communities … Continue reading

Posted in ONE Simulator, Simulation, Social Data Analysis | Leave a comment

Reality Mining Experiment Connection Trace File

This page contains data extracted from the MIT Reality Mining experiment which I downloaded from the CRAWDAD repository. Each encounter between devices participating in the experiment is recorded  in the following format and can be used with The One Simulator … Continue reading

Posted in ONE Simulator, Simulation, Social Data Analysis | 5 Comments

Connection Simulation For Trace files. Based on the ONE Simulator, without map and movement overheads

This mod called Connection Mode for The ONE Simulator 1.4.1 adds functionality which creates and destroys connections between hosts based on a connection trace file rather than movement patterns.  It can also be used to run simulations much faster because … Continue reading

Posted in ONE Simulator, Simulation, Social Data Analysis | 19 Comments

Virtual Map of Manchester – Version 1

Here you will find a virtual map of Manchester and Salford in the in the WKT format showing some bus routes, points of interest, offices, and houses. It's a bit rough around the edges and has a few redundant roads, … Continue reading

Posted in Manchester Map, ONE Simulator, Social Data Analysis | 3 Comments