├── .gitignore ├── LICENSE ├── README.md ├── Vagrantfile ├── backfill ├── .gitignore ├── backfill.R └── run.sh ├── dallas-police.Rproj ├── download └── download.sh ├── getter.R ├── incidents.R ├── scraper ├── .gitignore ├── README.md ├── exec.sh ├── geocode.R ├── old2new ├── scraper.js └── setup.sh ├── shiny ├── server.R ├── ui.R └── www │ └── styles.css ├── summarize ├── count.R └── incidents.R └── vm-provision.R /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trestletech/dallas-police/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trestletech/dallas-police/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trestletech/dallas-police/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trestletech/dallas-police/HEAD/Vagrantfile -------------------------------------------------------------------------------- /backfill/.gitignore: -------------------------------------------------------------------------------- 1 | pointer.txt 2 | -------------------------------------------------------------------------------- /backfill/backfill.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trestletech/dallas-police/HEAD/backfill/backfill.R -------------------------------------------------------------------------------- /backfill/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trestletech/dallas-police/HEAD/backfill/run.sh -------------------------------------------------------------------------------- /dallas-police.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trestletech/dallas-police/HEAD/dallas-police.Rproj -------------------------------------------------------------------------------- /download/download.sh: -------------------------------------------------------------------------------- 1 | aws s3 sync s3://dallas-police . 2 | -------------------------------------------------------------------------------- /getter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trestletech/dallas-police/HEAD/getter.R -------------------------------------------------------------------------------- /incidents.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trestletech/dallas-police/HEAD/incidents.R -------------------------------------------------------------------------------- /scraper/.gitignore: -------------------------------------------------------------------------------- 1 | .mq_key 2 | addressCache.Rds 3 | keys.R -------------------------------------------------------------------------------- /scraper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trestletech/dallas-police/HEAD/scraper/README.md -------------------------------------------------------------------------------- /scraper/exec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trestletech/dallas-police/HEAD/scraper/exec.sh -------------------------------------------------------------------------------- /scraper/geocode.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trestletech/dallas-police/HEAD/scraper/geocode.R -------------------------------------------------------------------------------- /scraper/old2new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trestletech/dallas-police/HEAD/scraper/old2new -------------------------------------------------------------------------------- /scraper/scraper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trestletech/dallas-police/HEAD/scraper/scraper.js -------------------------------------------------------------------------------- /scraper/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trestletech/dallas-police/HEAD/scraper/setup.sh -------------------------------------------------------------------------------- /shiny/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trestletech/dallas-police/HEAD/shiny/server.R -------------------------------------------------------------------------------- /shiny/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trestletech/dallas-police/HEAD/shiny/ui.R -------------------------------------------------------------------------------- /shiny/www/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trestletech/dallas-police/HEAD/shiny/www/styles.css -------------------------------------------------------------------------------- /summarize/count.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trestletech/dallas-police/HEAD/summarize/count.R -------------------------------------------------------------------------------- /summarize/incidents.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trestletech/dallas-police/HEAD/summarize/incidents.R -------------------------------------------------------------------------------- /vm-provision.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trestletech/dallas-police/HEAD/vm-provision.R --------------------------------------------------------------------------------