├── README.md ├── base.json ├── counties.csv ├── counties.json ├── create_json.py ├── data ├── CAINC1 │ ├── CAINC1_AK_1969_2018.csv │ ├── CAINC1_AL_1969_2018.csv │ ├── CAINC1_AR_1969_2018.csv │ ├── CAINC1_AZ_1969_2018.csv │ ├── CAINC1_CA_1969_2018.csv │ ├── CAINC1_CO_1969_2018.csv │ ├── CAINC1_CT_1969_2018.csv │ ├── CAINC1_DC_1969_2018.csv │ ├── CAINC1_DE_1969_2018.csv │ ├── CAINC1_FL_1969_2018.csv │ ├── CAINC1_GA_1969_2018.csv │ ├── CAINC1_HI_1969_2018.csv │ ├── CAINC1_IA_1969_2018.csv │ ├── CAINC1_ID_1969_2018.csv │ ├── CAINC1_IL_1969_2018.csv │ ├── CAINC1_IN_1969_2018.csv │ ├── CAINC1_KS_1969_2018.csv │ ├── CAINC1_KY_1969_2018.csv │ ├── CAINC1_LA_1969_2018.csv │ ├── CAINC1_MA_1969_2018.csv │ ├── CAINC1_MD_1969_2018.csv │ ├── CAINC1_ME_1969_2018.csv │ ├── CAINC1_MI_1969_2018.csv │ ├── CAINC1_MN_1969_2018.csv │ ├── CAINC1_MO_1969_2018.csv │ ├── CAINC1_MS_1969_2018.csv │ ├── CAINC1_MT_1969_2018.csv │ ├── CAINC1_NC_1969_2018.csv │ ├── CAINC1_ND_1969_2018.csv │ ├── CAINC1_NE_1969_2018.csv │ ├── CAINC1_NH_1969_2018.csv │ ├── CAINC1_NJ_1969_2018.csv │ ├── CAINC1_NM_1969_2018.csv │ ├── CAINC1_NV_1969_2018.csv │ ├── CAINC1_NY_1969_2018.csv │ ├── CAINC1_OH_1969_2018.csv │ ├── CAINC1_OK_1969_2018.csv │ ├── CAINC1_OR_1969_2018.csv │ ├── CAINC1_PA_1969_2018.csv │ ├── CAINC1_RI_1969_2018.csv │ ├── CAINC1_SC_1969_2018.csv │ ├── CAINC1_SD_1969_2018.csv │ ├── CAINC1_TN_1969_2018.csv │ ├── CAINC1_TX_1969_2018.csv │ ├── CAINC1_UT_1969_2018.csv │ ├── CAINC1_VA_1969_2018.csv │ ├── CAINC1_VT_1969_2018.csv │ ├── CAINC1_WA_1969_2018.csv │ ├── CAINC1_WI_1969_2018.csv │ ├── CAINC1_WV_1969_2018.csv │ ├── CAINC1_WY_1969_2018.csv │ ├── CAINC1__Footnotes.html │ └── CAINC1__definition.xml ├── CDC │ ├── Compressed Mortality (assaults), 1999-2019.txt │ ├── Compressed Mortality (land vehicle deaths; ICD-10 codes V01-V89), 1999-2019.txt │ ├── Compressed Mortality, 1999-2019 (all suicides).txt │ └── Compressed Mortality, 1999-2019 (firearm suicides).txt ├── Life Expectancy And Mortality Risk By County 1980-2014.csv ├── US_County_Level_Presidential_Results_08-16.csv ├── all-counties.json ├── bls │ ├── 2000.txt │ ├── 2001.txt │ ├── 2002.txt │ ├── 2003.txt │ ├── 2004.txt │ ├── 2005.txt │ ├── 2006.txt │ ├── 2007.txt │ ├── 2008.txt │ ├── 2009.txt │ ├── 2010.txt │ ├── 2011.txt │ ├── 2012.txt │ ├── 2013.txt │ ├── 2014.txt │ ├── 2015.txt │ ├── 2016.txt │ ├── 2017.txt │ ├── 2018.txt │ ├── 2019.txt │ └── 2020.txt ├── covid_confirmed_usafacts.csv ├── covid_deaths_usafacts.csv ├── education.tsv ├── election2020.json ├── fatal-police-shootings-data.csv ├── fips_to_county.txt ├── noaa-weather │ ├── README.md │ ├── ann-prcp-normal.txt │ ├── ann-snow-normal.txt │ ├── ann-tavg-normal.txt │ ├── fips_to_stations.json │ ├── ghcnd-stations.txt │ ├── mly-tavg-normal.txt │ └── noaa-readme.txt ├── police-deaths-2019.txt ├── poverty.tsv ├── state_to_abbr.json └── zip_county_fips_2018_03.csv ├── gallery ├── fsps.png ├── homicides.png ├── income.png ├── precipitation.png ├── snow.png ├── suicide.png ├── temperature.png ├── unemployment-2004.png ├── unemployment-2008.png ├── unemployment-2012.png ├── unemployment-2016.png └── unemployment.png ├── generate_health_data.py ├── generate_living_wage_data.py ├── generated ├── county-health.csv ├── living-wage.json └── police_shootings │ ├── firearmed-2017.json │ ├── firearmed-2018.json │ ├── firearmed-2019.json │ ├── firearmed-2020.json │ ├── total-2017.json │ ├── total-2018.json │ ├── total-2019.json │ ├── total-2020.json │ ├── unarmed-2017.json │ ├── unarmed-2018.json │ ├── unarmed-2019.json │ └── unarmed-2020.json ├── get_county_shootings.py └── request-cache.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/README.md -------------------------------------------------------------------------------- /base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/base.json -------------------------------------------------------------------------------- /counties.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/counties.csv -------------------------------------------------------------------------------- /counties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/counties.json -------------------------------------------------------------------------------- /create_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/create_json.py -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_AK_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_AK_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_AL_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_AL_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_AR_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_AR_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_AZ_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_AZ_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_CA_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_CA_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_CO_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_CO_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_CT_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_CT_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_DC_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_DC_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_DE_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_DE_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_FL_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_FL_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_GA_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_GA_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_HI_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_HI_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_IA_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_IA_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_ID_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_ID_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_IL_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_IL_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_IN_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_IN_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_KS_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_KS_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_KY_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_KY_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_LA_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_LA_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_MA_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_MA_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_MD_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_MD_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_ME_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_ME_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_MI_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_MI_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_MN_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_MN_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_MO_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_MO_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_MS_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_MS_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_MT_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_MT_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_NC_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_NC_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_ND_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_ND_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_NE_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_NE_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_NH_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_NH_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_NJ_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_NJ_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_NM_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_NM_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_NV_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_NV_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_NY_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_NY_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_OH_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_OH_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_OK_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_OK_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_OR_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_OR_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_PA_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_PA_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_RI_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_RI_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_SC_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_SC_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_SD_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_SD_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_TN_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_TN_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_TX_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_TX_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_UT_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_UT_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_VA_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_VA_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_VT_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_VT_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_WA_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_WA_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_WI_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_WI_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_WV_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_WV_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1_WY_1969_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1_WY_1969_2018.csv -------------------------------------------------------------------------------- /data/CAINC1/CAINC1__Footnotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1__Footnotes.html -------------------------------------------------------------------------------- /data/CAINC1/CAINC1__definition.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CAINC1/CAINC1__definition.xml -------------------------------------------------------------------------------- /data/CDC/Compressed Mortality (assaults), 1999-2019.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CDC/Compressed Mortality (assaults), 1999-2019.txt -------------------------------------------------------------------------------- /data/CDC/Compressed Mortality (land vehicle deaths; ICD-10 codes V01-V89), 1999-2019.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CDC/Compressed Mortality (land vehicle deaths; ICD-10 codes V01-V89), 1999-2019.txt -------------------------------------------------------------------------------- /data/CDC/Compressed Mortality, 1999-2019 (all suicides).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CDC/Compressed Mortality, 1999-2019 (all suicides).txt -------------------------------------------------------------------------------- /data/CDC/Compressed Mortality, 1999-2019 (firearm suicides).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/CDC/Compressed Mortality, 1999-2019 (firearm suicides).txt -------------------------------------------------------------------------------- /data/Life Expectancy And Mortality Risk By County 1980-2014.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/Life Expectancy And Mortality Risk By County 1980-2014.csv -------------------------------------------------------------------------------- /data/US_County_Level_Presidential_Results_08-16.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/US_County_Level_Presidential_Results_08-16.csv -------------------------------------------------------------------------------- /data/all-counties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/all-counties.json -------------------------------------------------------------------------------- /data/bls/2000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/bls/2000.txt -------------------------------------------------------------------------------- /data/bls/2001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/bls/2001.txt -------------------------------------------------------------------------------- /data/bls/2002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/bls/2002.txt -------------------------------------------------------------------------------- /data/bls/2003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/bls/2003.txt -------------------------------------------------------------------------------- /data/bls/2004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/bls/2004.txt -------------------------------------------------------------------------------- /data/bls/2005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/bls/2005.txt -------------------------------------------------------------------------------- /data/bls/2006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/bls/2006.txt -------------------------------------------------------------------------------- /data/bls/2007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/bls/2007.txt -------------------------------------------------------------------------------- /data/bls/2008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/bls/2008.txt -------------------------------------------------------------------------------- /data/bls/2009.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/bls/2009.txt -------------------------------------------------------------------------------- /data/bls/2010.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/bls/2010.txt -------------------------------------------------------------------------------- /data/bls/2011.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/bls/2011.txt -------------------------------------------------------------------------------- /data/bls/2012.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/bls/2012.txt -------------------------------------------------------------------------------- /data/bls/2013.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/bls/2013.txt -------------------------------------------------------------------------------- /data/bls/2014.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/bls/2014.txt -------------------------------------------------------------------------------- /data/bls/2015.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/bls/2015.txt -------------------------------------------------------------------------------- /data/bls/2016.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/bls/2016.txt -------------------------------------------------------------------------------- /data/bls/2017.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/bls/2017.txt -------------------------------------------------------------------------------- /data/bls/2018.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/bls/2018.txt -------------------------------------------------------------------------------- /data/bls/2019.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/bls/2019.txt -------------------------------------------------------------------------------- /data/bls/2020.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/bls/2020.txt -------------------------------------------------------------------------------- /data/covid_confirmed_usafacts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/covid_confirmed_usafacts.csv -------------------------------------------------------------------------------- /data/covid_deaths_usafacts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/covid_deaths_usafacts.csv -------------------------------------------------------------------------------- /data/education.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/education.tsv -------------------------------------------------------------------------------- /data/election2020.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/election2020.json -------------------------------------------------------------------------------- /data/fatal-police-shootings-data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/fatal-police-shootings-data.csv -------------------------------------------------------------------------------- /data/fips_to_county.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/fips_to_county.txt -------------------------------------------------------------------------------- /data/noaa-weather/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/noaa-weather/README.md -------------------------------------------------------------------------------- /data/noaa-weather/ann-prcp-normal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/noaa-weather/ann-prcp-normal.txt -------------------------------------------------------------------------------- /data/noaa-weather/ann-snow-normal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/noaa-weather/ann-snow-normal.txt -------------------------------------------------------------------------------- /data/noaa-weather/ann-tavg-normal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/noaa-weather/ann-tavg-normal.txt -------------------------------------------------------------------------------- /data/noaa-weather/fips_to_stations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/noaa-weather/fips_to_stations.json -------------------------------------------------------------------------------- /data/noaa-weather/ghcnd-stations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/noaa-weather/ghcnd-stations.txt -------------------------------------------------------------------------------- /data/noaa-weather/mly-tavg-normal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/noaa-weather/mly-tavg-normal.txt -------------------------------------------------------------------------------- /data/noaa-weather/noaa-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/noaa-weather/noaa-readme.txt -------------------------------------------------------------------------------- /data/police-deaths-2019.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/police-deaths-2019.txt -------------------------------------------------------------------------------- /data/poverty.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/poverty.tsv -------------------------------------------------------------------------------- /data/state_to_abbr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/state_to_abbr.json -------------------------------------------------------------------------------- /data/zip_county_fips_2018_03.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/data/zip_county_fips_2018_03.csv -------------------------------------------------------------------------------- /gallery/fsps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/gallery/fsps.png -------------------------------------------------------------------------------- /gallery/homicides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/gallery/homicides.png -------------------------------------------------------------------------------- /gallery/income.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/gallery/income.png -------------------------------------------------------------------------------- /gallery/precipitation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/gallery/precipitation.png -------------------------------------------------------------------------------- /gallery/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/gallery/snow.png -------------------------------------------------------------------------------- /gallery/suicide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/gallery/suicide.png -------------------------------------------------------------------------------- /gallery/temperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/gallery/temperature.png -------------------------------------------------------------------------------- /gallery/unemployment-2004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/gallery/unemployment-2004.png -------------------------------------------------------------------------------- /gallery/unemployment-2008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/gallery/unemployment-2008.png -------------------------------------------------------------------------------- /gallery/unemployment-2012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/gallery/unemployment-2012.png -------------------------------------------------------------------------------- /gallery/unemployment-2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/gallery/unemployment-2016.png -------------------------------------------------------------------------------- /gallery/unemployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/gallery/unemployment.png -------------------------------------------------------------------------------- /generate_health_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/generate_health_data.py -------------------------------------------------------------------------------- /generate_living_wage_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/generate_living_wage_data.py -------------------------------------------------------------------------------- /generated/county-health.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/generated/county-health.csv -------------------------------------------------------------------------------- /generated/living-wage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/generated/living-wage.json -------------------------------------------------------------------------------- /generated/police_shootings/firearmed-2017.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/generated/police_shootings/firearmed-2017.json -------------------------------------------------------------------------------- /generated/police_shootings/firearmed-2018.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/generated/police_shootings/firearmed-2018.json -------------------------------------------------------------------------------- /generated/police_shootings/firearmed-2019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/generated/police_shootings/firearmed-2019.json -------------------------------------------------------------------------------- /generated/police_shootings/firearmed-2020.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/generated/police_shootings/firearmed-2020.json -------------------------------------------------------------------------------- /generated/police_shootings/total-2017.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/generated/police_shootings/total-2017.json -------------------------------------------------------------------------------- /generated/police_shootings/total-2018.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/generated/police_shootings/total-2018.json -------------------------------------------------------------------------------- /generated/police_shootings/total-2019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/generated/police_shootings/total-2019.json -------------------------------------------------------------------------------- /generated/police_shootings/total-2020.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/generated/police_shootings/total-2020.json -------------------------------------------------------------------------------- /generated/police_shootings/unarmed-2017.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/generated/police_shootings/unarmed-2017.json -------------------------------------------------------------------------------- /generated/police_shootings/unarmed-2018.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/generated/police_shootings/unarmed-2018.json -------------------------------------------------------------------------------- /generated/police_shootings/unarmed-2019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/generated/police_shootings/unarmed-2019.json -------------------------------------------------------------------------------- /generated/police_shootings/unarmed-2020.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/generated/police_shootings/unarmed-2020.json -------------------------------------------------------------------------------- /get_county_shootings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/get_county_shootings.py -------------------------------------------------------------------------------- /request-cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evangambit/JsonOfCounties/HEAD/request-cache.json --------------------------------------------------------------------------------