-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp-common-defs.qmd
More file actions
69 lines (46 loc) · 3.75 KB
/
Copy pathapp-common-defs.qmd
File metadata and controls
69 lines (46 loc) · 3.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Common data elements
## BLN crime codes
The four-digit crime codes in the data generally refer to the FBI's National Criminal Information Center's classification of criminal offenses. An example is "0904: Homicide-Willful Kill-Non-family-Weapon". There are some made-up codes in the ICE data. They refer to more general or specific versions of existing codes. For example, ICE has two codes for illegal entry in the US that are more specific than the ones used by the FBI.
We have also assigned a 2-digit code ("09: Homicide") matching those NCIC categories.
In addition, there are five BLN-created codes (`bln_special_code`) created to facilitate common stories:
* `Violent`: FBI-defined violent crime codes
* `Drugs`: FBI-defined "Dangerous Drug" codes
* `Traffic`: Anything in the general code for traffic offenses
* `Immigration`: Codes that refer only to the illegal entry, re-entry or use of false documents to gain entry. We did not include the immigration offenses that refer to trafficking.
* `No criminal conviction`: Anything that did not have a conviction in the table's corresponding criminality indicator.
(Violent and drug crime codes were assigned based on the [Social Security Administration's listing](https://secure.ssa.gov/poms.nsf/lnx/0202613900#b), which refers to FBI categorizations.)
## Simplified categories
At the risk of losing some detail, BLN has simplified some of the categories used in the original data to make for more straightforward analysis.
### Case status
We're unsure when the case status is assigned. The original categories have their genesis in immigration law pre- and post-1996. We have recoded them into easier-to-understand categories:
Original | Recode
---------------------------- | ---------------
0-Withdrawal Permitted - I-275 Issued | Voluntary return
3-Voluntary Departure Confirmed | Voluntary return
5-Title 50 Expulsion | Alien Enemies Act expulsion
6-Deported/Removed - Deportability | Removed
7-Died | Died
8-Excluded/Removed - Inadmissibility | Removed
9-VR Witnessed | Voluntary return
A-Proceedings Terminated | Released
ACTIVE | Active case
B-Relief Granted | Released
E-Charging Document Canceled by ICE | Released
L-Legalization - Permanent Residence Granted | Released
Z-SAW - Permanent Residence Granted | Released
(Missing) | Active case
## City, County and State assignments
### Detention locations
The original data had no state, city or county -- just the name of the detention center and the code used by ICE. We used the Vera Institute's Detention Trends dataset availble on its [Github repo](https://raw.githubusercontent.com/vera-institute/ice-detention-trends/refs/heads/main) to assign the locations.
### Detainer locations
The detainer table contained a name and city for each detainer facility. These were geocoded using Google's Geocoding API. In some cases, the API returned a specific rooftop address for the location based on the name, but in most cases it contained only a general location. These coordinates were coded into counties using Census TIGER data, through R's `tigris` package. Each county and state was checked and corrected where necessary.^[The only serious mistakes were in New Jersey, where Google coded them in New York City.]
## Other documentation
- [Deportation data
project](https://deportationdata.org/docs/ice.html)'s original
documentation for ICE data. In particular, the full "codebook" is
the source for a lot of our understanding.
- There are some definitions that are still meaningful in the paper
"[Piecing together the US Immigration Detention Puzzle One Night at
a Time](https://journals.sagepub.com/doi/reader/10.1177/233150241500300402),
Donald Kerwin and Daniela Alulema (Center for Migration Studies),
Journal on Migration and Human Security, 2012.