A dashboard and data repository of ICE immigration detention facilities and trends.
Access the dashboard online here: https://detentiondata.herokuapp.com/
Data source: the University of Washington's Center for Human Rights
Through numerous FOIA requests and litigation, UW’s Center for Human Rights has obtained dozens of datasets spanning roughly 2010-2020 related to ICE migrant detention facilities across the US. Datasets include variables on detention facilities, law enforcement, and bond rates.
- Python3
- For required python packages, see requirements.txt
├── LICENSE
├── Procfile
├── README.md
├── app.py
├── assets
│ └── style.css
├── data
│ ├── README.md
│ ├── arrest_dtypes.yaml
│ ├── arrests.csv
│ ├── arrests.csv.zip
│ ├── arrests_by_fy.csv
│ ├── encounter_dtypes.yaml
│ ├── encounters.csv
│ ├── encounters.csv.zip
│ ├── encounters_by_fy.csv
│ ├── ice-facilities.csv
│ ├── ice-facilities.csv.zip
│ ├── lat_long_det_fac_99.csv
│ ├── removal_dtypes.yaml
│ ├── removals.csv
│ ├── removals.csv.zip
│ └── removals_by_fy.csv
├── detention_data_dashboard
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── __init__.cpython-38.pyc
│ │ ├── data_download.cpython-38.pyc
│ │ └── figure.cpython-38.pyc
│ ├── data_download.py
│ ├── figure.py
│ └── tests
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── __init__.cpython-38.pyc
│ │ ├── test_data_download.cpython-38.pyc
│ │ └── test_figure.cpython-38.pyc
│ ├── test_data_download.py
│ ├── test_figure.py
│ └── test_images
├── doc
│ ├── Final_Presentation.pdf
│ ├── README.md
│ ├── software_design.md
│ └── tech_reviews
│ ├── Tech_Review_Web_Development_Apps_for_Python.txt
│ └── Technology_Review_Dashboards_in_Python.pptx
├── environment.yml
├── requirements.txt
├── runtime.txt
└── setup.pyVideo tutorial on how to use use online dashboard: https://youtu.be/6wihXwGH7GE
Video tutorial on how to pip install: https://youtu.be/fuL_vFVhTDs