├── .gitignore ├── README.md ├── california └── secretary_of_state │ ├── corporate_master.csv │ └── llc.csv ├── chicago └── board_of_elections │ └── results.csv ├── illinois └── board_of_ed │ ├── reportcard2002.csv │ ├── reportcard2003.csv │ ├── reportcard2004.csv │ ├── reportcard2005.csv │ ├── reportcard2006.csv │ ├── reportcard2007.csv │ ├── reportcard2008.csv │ ├── reportcard2009.csv │ ├── reportcard2010.csv │ ├── reportcard2011.csv │ └── reportcard2012.csv ├── index.csv ├── los_angeles_county └── assessor │ └── local_roll.csv ├── rhode_island └── board_of_elections │ ├── long_results.csv │ └── short_results.csv └── us ├── bls ├── bls_la_data_schema.csv └── bls_qcew_enb_schema.csv ├── census ├── acs2010_geo_schema.csv ├── census2000_geo_schema.csv ├── census2010_geo_schema.csv └── saipe1998-2012_schema.csv ├── dot └── nbi_fixed_schema.csv ├── fec ├── fec_candidate_master_schema.csv ├── fec_candidate_master_schema80.csv ├── fec_candidate_master_schema82.csv ├── fec_candidate_master_schema84.csv ├── fec_candidate_master_schema86.csv ├── fec_candidate_master_schema88.csv ├── fec_candidate_master_schema90.csv ├── fec_candidate_master_schema92.csv ├── fec_candidate_master_schema94.csv ├── fec_candidate_master_schema96.csv ├── fec_candidate_master_schema98.csv ├── fec_candidate_summary.csv ├── fec_committee_master_schema.csv ├── fec_committee_transactions.csv ├── fec_contributions_to_candidates.csv ├── fec_contributions_to_candidates80.csv ├── fec_contributions_to_candidates82.csv ├── fec_contributions_to_candidates84.csv ├── fec_contributions_to_candidates86.csv ├── fec_contributions_to_candidates88.csv ├── fec_contributions_to_candidates90.csv ├── fec_contributions_to_candidates92.csv ├── fec_contributions_to_candidates94.csv ├── fec_contributions_to_candidates96.csv ├── fec_contributions_to_candidates98.csv ├── fec_individual_contributions.csv ├── fec_individual_contributions80.csv ├── fec_individual_contributions82.csv ├── fec_individual_contributions84.csv ├── fec_individual_contributions86.csv ├── fec_individual_contributions88.csv ├── fec_individual_contributions90.csv ├── fec_individual_contributions92.csv ├── fec_individual_contributions94.csv ├── fec_individual_contributions96.csv ├── fec_individual_contributions98.csv └── fec_pac_summary.csv ├── irs └── irs_exempt_org_schema.csv ├── nacjd ├── leaic_2005.csv └── lemas_2003.csv ├── nasa └── sunspots-schema.csv ├── noaa ├── ghcn_metadata_schema.csv ├── ghcn_schema.csv └── gsod_schema.csv ├── ssa └── death_master_file.csv └── usno └── maia_finals_schema.csv /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | FFS Fixed Schemas 2 | ================= 3 | 4 | A repository of schema's for common fixed-width data formats (mostly produced by various government entities). Each schema is the correct format suitable for use with [csvkit](http://github.com/onyxfish/csvkit/)'s in2csv utility. 5 | 6 | Index 7 | ----- 8 | 9 | See [index.csv](https://github.com/onyxfish/ffs/blob/master/index.csv) for a reference to all schemas in this repository, including the contributor of each. 10 | 11 | Contributions 12 | ------------- 13 | 14 | Help free all of us from the evil clutches of fixed-width by sharing your own schemas! Instructions: 15 | 16 | * Fork the repository. 17 | * Add your schema. 18 | * Update the index. 19 | * Send a pull request. 20 | * We all PROFIT!!! 21 | 22 | See [index.csv](https://github.com/onyxfish/ffs/blob/master/index.csv) for a complete list of contributors. 23 | 24 | License 25 | ------- 26 | 27 | Public domain. 28 | 29 | -------------------------------------------------------------------------------- /california/secretary_of_state/corporate_master.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | transaction_date,0,5 3 | corporation_number,5,8 4 | incorporation_date,13,8 5 | corporation_status,21,1 6 | corporation_type,22,4 7 | corporation_tax_base,26,1 8 | corporation_classification,27,2 9 | filler,29,11 10 | term_expiration_date,40,8 11 | ftb_suspension_status,48,1 12 | ftb_suspension_date,49,8 13 | so_file_number,57,7 14 | so_file_date,64,6 15 | corporation_name,70,350 16 | co_name,420,50 17 | mail_address_line_1,470,40 18 | mail_address_line_2,510,40 19 | mail_address_city,550,24 20 | mail_address_state_country,574,15 21 | mail_address_zip_code,589,10 22 | ceo_name,599,50 23 | ceo_address_line_1,649,40 24 | ceo_address_line_2,689,40 25 | ceo_address_city,729,24 26 | ceo_address_state_county,753,15 27 | ceo_address_zip_code,768,10 28 | agent_name,778,350 29 | agent_address_line_1,1128,40 30 | agent_address_line_2,1168,40 31 | agent_address_city,1208,24 32 | agent_address_state_county,1232,15 33 | agent_address_zip_code,1247,10 34 | state_or_foreign_country,1257,24 35 | -------------------------------------------------------------------------------- /california/secretary_of_state/llc.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | file_number,0,12 3 | file_date,12,8 4 | status,20,1 5 | filing_type,21,1 6 | name,22,220 7 | mailing_address,242,40 8 | mailing_city,282,24 9 | mailing_state,306,2 10 | mailing_zip,308,10 11 | calif_address,318,40 12 | calif_city,358,24 13 | calif_zip,382,10 14 | original_file_number,492,20 15 | original_file_date,412,8 16 | jurisdiction,420,2 17 | agent_name,422,65 18 | agent_address_1,487,40 19 | agent_address_2,527,40 20 | agent_city,567,24 21 | agent_state,591,2 22 | agent_zip,593,10 23 | term,603,20 24 | number_gp_to_amend,623,2 25 | number_amendments,625,3 26 | total_pages,628,5 27 | additional_gps,633,2 28 | partner_1_name,635,140 29 | partner_1_address,775,40 30 | partner_1_city,815,24 31 | partner_1_state,839,2 32 | partner_1_zip,841,10 33 | partner_2_name,851,140 34 | partner_2_address,991,40 35 | partner_2_city,1031,24 36 | partner_2_state,1055,2 37 | partner_2_zip,1057,10 38 | jurisdiction,1067,2 39 | llc_management_code,1069,1 40 | llc_type_of_business,1070,40 41 | future_use,1110,344 42 | -------------------------------------------------------------------------------- /chicago/board_of_elections/results.csv: -------------------------------------------------------------------------------- 1 | column,length,start 2 | Contest Code,4,1 3 | Candidate Number,3,5 4 | # of Eligible Precincts,4,8 5 | Votes,7,12 6 | # Completed precincts,4,19 7 | Party Abbreviation,3,23 8 | Political Subdivision Abbrev,7,26 9 | Contest name,56,33 10 | Candidate Name,38,89 11 | Political subdivision name,25,127 12 | Vote For,3,152 -------------------------------------------------------------------------------- /index.csv: -------------------------------------------------------------------------------- 1 | schema_filename,file_type,publisher,data_source,schema_source,contributor 2 | us/census/saipe1998-2012_schema.csv,Census Headers for SAIPE,U.S. Census Bureau,https://www.census.gov/did/www/saipe/data/statecounty/data/index.html,https://www.census.gov/did/www/saipe/data/statecounty/data/2012.html,Gabriel Florit 3 | us/bls/bls_qcew_enb_schema.csv,QCEW flat files,Bureau of Labor Statistics,ftp://ftp.bls.gov/pub/special.requests/cew/,ftp://ftp.bls.gov/pub/special.requests/cew/DOCUMENT/layout.txt,Christopher Groskopf 4 | us/bls/bls_la_data_schema.csv,LA flat files,Bureau of Labor Statistics,ftp://ftp.bls.gov/pub/time.series/la/,ftp://ftp.bls.gov/pub/time.series/la/la.txt,Christopher Groskopf 5 | us/census/census2000_geo_schema.csv,Census Geography Headers,U.S. Census Bureau,http://www2.census.gov/census_2010/,Extracted from Access shells provided by the Census Bureau,Joe Germuska 6 | us/census/census2010_geo_schema.csv,Census Geography Headers,U.S. Census Bureau,http://www2.census.gov/census_2010/,Extracted from Access shells provided by the Census Bureau,Joe Germuska 7 | us/census/acs2010_geo_schema.csv,Census Geography Headers for American Community Survey (ACS),U.S. Census Bureau,http://www2.census.gov/acs2010_5yr/,Adapted from SAS macro at http://www2.census.gov/acs2010_5yr/summaryfile/UserTools/SF_All_Macro.sas,Joe Germuska 8 | us/fec/fec_committee_master_schema.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpdet.shtml,ftp://ftp.fec.gov/FEC/cm_dictionary.txt,Aaron Bycoffe 9 | us/fec/fec_candidate_master_schema.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpdet.shtml,ftp://ftp.fec.gov/FEC/cn_dictionary.txt,Aaron Bycoffe 10 | us/fec/fec_candidate_master_schema80.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpdet.shtml,ftp://ftp.fec.gov/FEC/cn_dictionary.txt,Aaron Bycoffe 11 | us/fec/fec_candidate_master_schema82.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpdet.shtml,ftp://ftp.fec.gov/FEC/cn_dictionary.txt,Aaron Bycoffe 12 | us/fec/fec_candidate_master_schema84.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpdet.shtml,ftp://ftp.fec.gov/FEC/cn_dictionary.txt,Aaron Bycoffe 13 | us/fec/fec_candidate_master_schema86.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpdet.shtml,ftp://ftp.fec.gov/FEC/cn_dictionary.txt,Aaron Bycoffe 14 | us/fec/fec_candidate_master_schema88.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpdet.shtml,ftp://ftp.fec.gov/FEC/cn_dictionary.txt,Aaron Bycoffe 15 | us/fec/fec_candidate_master_schema90.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpdet.shtml,ftp://ftp.fec.gov/FEC/cn_dictionary.txt,Aaron Bycoffe 16 | us/fec/fec_candidate_master_schema92.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpdet.shtml,ftp://ftp.fec.gov/FEC/cn_dictionary.txt,Aaron Bycoffe 17 | us/fec/fec_candidate_master_schema94.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpdet.shtml,ftp://ftp.fec.gov/FEC/cn_dictionary.txt,Aaron Bycoffe 18 | us/fec/fec_candidate_master_schema96.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpdet.shtml,ftp://ftp.fec.gov/FEC/cn_dictionary.txt,Aaron Bycoffe 19 | us/fec/fec_candidate_master_schema98.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpdet.shtml,ftp://ftp.fec.gov/FEC/cn_dictionary.txt,Aaron Bycoffe 20 | us/fec/fec_individual_contributions.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpdet.shtml,ftp://ftp.fec.gov/FEC/indiv_dictionary.txt,Aaron Bycoffe 21 | us/fec/fec_individual_contributions80.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpdet.shtml,ftp://ftp.fec.gov/FEC/indiv_dictionary.txt,Aaron Bycoffe 22 | us/fec/fec_individual_contributions82.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpdet.shtml,ftp://ftp.fec.gov/FEC/indiv_dictionary.txt,Aaron Bycoffe 23 | us/fec/fec_individual_contributions84.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpdet.shtml,ftp://ftp.fec.gov/FEC/indiv_dictionary.txt,Aaron Bycoffe 24 | us/fec/fec_individual_contributions86.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpdet.shtml,ftp://ftp.fec.gov/FEC/indiv_dictionary.txt,Aaron Bycoffe 25 | us/fec/fec_individual_contributions88.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpdet.shtml,ftp://ftp.fec.gov/FEC/indiv_dictionary.txt,Aaron Bycoffe 26 | us/fec/fec_individual_contributions90.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpdet.shtml,ftp://ftp.fec.gov/FEC/indiv_dictionary.txt,Aaron Bycoffe 27 | us/fec/fec_individual_contributions92.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpdet.shtml,ftp://ftp.fec.gov/FEC/indiv_dictionary.txt,Aaron Bycoffe 28 | us/fec/fec_individual_contributions94.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpdet.shtml,ftp://ftp.fec.gov/FEC/indiv_dictionary.txt,Aaron Bycoffe 29 | us/fec/fec_individual_contributions96.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpdet.shtml,ftp://ftp.fec.gov/FEC/indiv_dictionary.txt,Aaron Bycoffe 30 | us/fec/fec_individual_contributions98.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpdet.shtml,ftp://ftp.fec.gov/FEC/indiv_dictionary.txt,Aaron Bycoffe 31 | us/fec/fec_candidate_summary.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpsum.shtml,http://fec.gov/finance/disclosure/ftpsum.shtml,Aaron Bycoffe 32 | us/fec/fec_pac_summary.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpsum.shtml,http://fec.gov/finance/disclosure/ftpsum.shtml,Aaron Bycoffe 33 | us/fec/fec_contributions_to_candidates.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpdet.shtml,ftp://ftp.fec.gov/FEC/pas2_dictionary.txt,Aaron Bycoffe 34 | us/fec/fec_contributions_to_candidates80.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpdet.shtml,ftp://ftp.fec.gov/FEC/pas2_dictionary.txt,Aaron Bycoffe 35 | us/fec/fec_contributions_to_candidates82.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpdet.shtml,ftp://ftp.fec.gov/FEC/pas2_dictionary.txt,Aaron Bycoffe 36 | us/fec/fec_contributions_to_candidates84.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpdet.shtml,ftp://ftp.fec.gov/FEC/pas2_dictionary.txt,Aaron Bycoffe 37 | us/fec/fec_contributions_to_candidates86.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpdet.shtml,ftp://ftp.fec.gov/FEC/pas2_dictionary.txt,Aaron Bycoffe 38 | us/fec/fec_contributions_to_candidates88.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpdet.shtml,ftp://ftp.fec.gov/FEC/pas2_dictionary.txt,Aaron Bycoffe 39 | us/fec/fec_contributions_to_candidates90.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpdet.shtml,ftp://ftp.fec.gov/FEC/pas2_dictionary.txt,Aaron Bycoffe 40 | us/fec/fec_contributions_to_candidates92.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpdet.shtml,ftp://ftp.fec.gov/FEC/pas2_dictionary.txt,Aaron Bycoffe 41 | us/fec/fec_contributions_to_candidates94.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpdet.shtml,ftp://ftp.fec.gov/FEC/pas2_dictionary.txt,Aaron Bycoffe 42 | us/fec/fec_contributions_to_candidates96.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpdet.shtml,ftp://ftp.fec.gov/FEC/pas2_dictionary.txt,Aaron Bycoffe 43 | us/fec/fec_contributions_to_candidates98.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpdet.shtml,ftp://ftp.fec.gov/FEC/pas2_dictionary.txt,Aaron Bycoffe 44 | us/fec/fec_committee_transactions.csv,Flat files,Federal Election Commission,http://fec.gov/finance/disclosure/ftpdet.shtml,ftp://ftp.fec.gov/FEC/oth_dictionary.txt,Aaron Bycoffe 45 | us/noaa/gsod_schema.csv,Global Surface Summary of the Day gzipped flat files,National Climatic Data Center,ftp://ftp.ncdc.noaa.gov/pub/data/gsod/,ftp://ftp.ncdc.noaa.gov/pub/data/gsod/readme.txt,Justin Myers 46 | illinois/board_of_ed/reportcard2002.csv,Illinois School Report Card,Illinois State Board of Education,http://www.isbe.net/research/htmls/report_card.htm,Derived from ISBE file layout (XLS),Joe Germuska 47 | illinois/board_of_ed/reportcard2003.csv,Illinois School Report Card,Illinois State Board of Education,http://www.isbe.net/research/htmls/report_card.htm,Derived from ISBE file layout (XLS),Joe Germuska 48 | illinois/board_of_ed/reportcard2004.csv,Illinois School Report Card,Illinois State Board of Education,http://www.isbe.net/research/htmls/report_card.htm,Derived from ISBE file layout (XLS),Joe Germuska 49 | illinois/board_of_ed/reportcard2005.csv,Illinois School Report Card,Illinois State Board of Education,http://www.isbe.net/research/htmls/report_card.htm,Derived from ISBE file layout (XLS),Joe Germuska 50 | illinois/board_of_ed/reportcard2006.csv,Illinois School Report Card,Illinois State Board of Education,http://www.isbe.net/research/htmls/report_card.htm,Derived from ISBE file layout (XLS),Joe Germuska 51 | illinois/board_of_ed/reportcard2007.csv,Illinois School Report Card,Illinois State Board of Education,http://www.isbe.net/research/htmls/report_card.htm,Derived from ISBE file layout (XLS),Joe Germuska 52 | illinois/board_of_ed/reportcard2008.csv,Illinois School Report Card,Illinois State Board of Education,http://www.isbe.net/research/htmls/report_card.htm,Derived from ISBE file layout (XLS),Joe Germuska 53 | illinois/board_of_ed/reportcard2009.csv,Illinois School Report Card,Illinois State Board of Education,http://www.isbe.net/research/htmls/report_card.htm,Derived from ISBE file layout (XLS),Joe Germuska 54 | illinois/board_of_ed/reportcard2010.csv,Illinois School Report Card,Illinois State Board of Education,http://www.isbe.net/research/htmls/report_card.htm,Derived from ISBE file layout (XLS),Joe Germuska 55 | illinois/board_of_ed/reportcard2011.csv,Illinois School Report Card,Illinois State Board of Education,http://www.isbe.net/research/htmls/report_card.htm,Derived from ISBE file layout (XLS),Joe Germuska 56 | illinois/board_of_ed/reportcard2012.csv,Illinois School Report Card,Illinois State Board of Education,http://www.isbe.net/research/htmls/report_card.htm,Derived from ISBE file layout (XLS),Joe Germuska 57 | chicago/board_of_elections/results.csv,Election Results,Chicago Board of Elections,http://chicagoelections.com/results/ap/summary.txt,Derived from http://chicagoelections.com/results/ap/text_layout.txt,Joe Germuska 58 | us/ssa/death_master_file.csv,fixed width,National Technical Information Service on behalf of the Social Security Administration,,https://dmf.ntis.gov/recordlayout.pdf,Joe Germuska 59 | us/irs/irs_exempt_org_schema.csv,Flat Files,Internal Revenue Service,http://www.irs.gov/uac/SOI-Tax-Stats-Exempt-Organizations-Business-Master-File-Extract-(EO-BMF),http://www.irs.gov/pub/irs-soi/eobk13.txt,Derek Willis 60 | us/dot/nbi_fixed_schema.csv,fixed width,U.S. Department of Transportation Federal Highway Administration's National Bridge Inventory,http://www.fhwa.dot.gov/bridge/nbi/ascii.cfm,http://www.fhwa.dot.gov/bridge/nbi/format.cfm,Tom Meagher 61 | los_angeles_county/assessor/local_roll.csv,fixed width,Los Angeles County Office of the Assessor,California Public Records Act request,California Public Records Act request,Ben Welsh 62 | us/nasa/sunspots-schema.csv,fixed width,NASA,http://solarscience.msfc.nasa.gov/SunspotCycle.shtml,extraced from file,Robert Kosara 63 | us/noaa/ghcn_schema.csv,fixed width,National Climatic Data Center,ftp://ftp.ncdc.noaa.gov/pub/data/ghcn/v3/,ftp://ftp.ncdc.noaa.gov/pub/data/ghcn/v3/README,Beojan Stanislaus 64 | us/noaa/ghcn_metadata_schema.csv,fixed width,National Climatic Data Center,ftp://ftp.ncdc.noaa.gov/pub/data/ghcn/v3/,ftp://ftp.ncdc.noaa.gov/pub/data/ghcn/v3/README,Beojan Stanislaus 65 | us/usno/maia_finals_schema.csv, fixed width, US Naval Observatory,http://maia.usno.navy.mil/ser7/finals.all ,http://maia.usno.navy.mil/ser7/readme.finals, David Yanofsky 66 | us/nacjd/leaic_2005.csv,fixed width Law Enforcement Agencies Identifier Crosswalk,National Archive of Criminal Justice Data,http://www.icpsr.umich.edu/cgi-bin/bob/terms2?study=4634&ds=1&bundle=ascii&path=NACJD,http://www.icpsr.umich.edu/cgi-bin/bob/terms2?study=4634&ds=1&bundle=ascii&path=NACJD,Tom Meagher 67 | rhode_island/board_of_elections/long_results.csv,fixed width,Rhode Island Board of Elections,http://www.ri.gov/election/results/2014/general_election/data/,http://www.ri.gov/election/results/data_description.pdf,Derek Willis 68 | rhode_island/board_of_elections/short_results.csv,fixed width,Rhode Island Board of Elections,http://www.ri.gov/election/results/2014/general_election/data/,http://www.ri.gov/election/results/data_description.pdf,Derek Willis 69 | us/nacjd/lemas_2003.csv,fixed width Law Enforcement Management and Administrative Statistics (LEMAS): 2003 Sample Survey of Law Enforcement Agencies (ICPSR 4411),National Archive of Criminal Justice Data,https://www.icpsr.umich.edu/web/ICPSR/studies/4411,https://www.icpsr.umich.edu/web/ICPSR/studies/4411,Geoff Hing -------------------------------------------------------------------------------- /los_angeles_county/assessor/local_roll.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | ain,0,10 3 | tax_rate_area,10,5 4 | administrative_region_number,15,2 5 | common_area_key,17,1 6 | year_sold_to_state,18,4 7 | recording_date,22,8 8 | land_value,30,9 9 | improvement_value,39,9 10 | gross_personal_property_key,48,1 11 | exemption_claim_type_key,49,1 12 | gross_personal_property_value,50,9 13 | filler,59,9 14 | fixture_value,68,9 15 | real_estate_exemption_value,77,9 16 | personal_property_exemption_value,86,9 17 | fixture_exemption_value,95,9 18 | homeowners_exemption,104,7 19 | first_owner_assessee_name,111,32 20 | first_owner_assessee_name_overflow,143,32 21 | second_owner_assessee_name,175,32 22 | special_name_assessee,207,32 23 | address_key,239,1 24 | address_last_change,240,8 25 | address_city_code,248,3 26 | address_house_number,251,5 27 | address_fraction,256,3 28 | address_direction,259,1 29 | address_unit,260,8 30 | address_zipcode,268,9 31 | address_street_name,277,32 32 | address_city_and_state,309,24 33 | mailing_key,333,1 34 | mailing_last_change,334,8 35 | mailing_city_code,342,3 36 | mailing_house_number,345,5 37 | mailing_fraction,350,3 38 | mailing_direction,353,1 39 | mailing_unit,354,8 40 | mailing_zipcode,362,9 41 | mailing_street_name,371,32 42 | mailing_city_and_state,403,24 43 | narrative,427,40 44 | lot,467,5 45 | division,472,5 46 | region,477,3 47 | line_one,480,40 48 | line_two,520,40 49 | line_three,560,40 50 | line_four,600,40 51 | line_five,640,40 52 | zoning_code,680,15 53 | use_code,695,4 54 | effective_year,699,4 55 | year_built,703,4 56 | square_feet,707,7 57 | -------------------------------------------------------------------------------- /rhode_island/board_of_elections/long_results.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | contest_number,1,4 3 | candidate_number,5,3 4 | precinct_code,8,4 5 | total_votes,12,6 6 | election_day,18,6 7 | mail_ballots,24,6 8 | votes_group_3,30,6 9 | votes_group_4,36,6 10 | votes_group_5,42,6 11 | party_code,48,3 12 | district_type_id,51,3 13 | district_code,54,4 14 | contest_title,58,56 15 | candidate_name,114,38 16 | precinct_name,152,30 17 | district_name,182,25 18 | votes_allowed,207,2 19 | referendum_flag,209,1 20 | -------------------------------------------------------------------------------- /rhode_island/board_of_elections/short_results.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | contest_number,1,4 3 | candidate_number,5,3 4 | precinct_code,8,4 5 | total_votes,12,6 6 | election_day,18,6 7 | mail_ballots,24,6 8 | votes_group_3,30,6 9 | votes_group_4,36,6 10 | votes_group_5,42,6 11 | -------------------------------------------------------------------------------- /us/bls/bls_la_data_schema.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | series_id,0,17 3 | year,17,4 4 | period,21,3 5 | value,24,12 6 | footnotes_codes,36,10 7 | -------------------------------------------------------------------------------- /us/bls/bls_qcew_enb_schema.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | survey_prefix,0,3 3 | area_code,3,5 4 | datatype_code,8,1 5 | size_code,9,1 6 | ownership_code,10,1 7 | industry_code,11,6 8 | year,17,4 9 | aggregation_level,21,2 10 | first_quarter_status_code,23,1 11 | first_quarter_number_of_establishments,24,8 12 | january_employment,32,9 13 | february_employment,41,9 14 | march_employment,50,9 15 | first_quarter_total_wages,59,15 16 | first_quarter_taxable_wages,74,15 17 | first_quarter_contributions,89,13 18 | first_quarter_average_weekly_wage,102,8 19 | second_quarter_status_code,110,1 20 | second_quarter_number_of_establishments,111,8 21 | april_employment,119,9 22 | may_employment,128,9 23 | june_employment,137,9 24 | second_quarter_total_wages,146,15 25 | second_quarter_taxable_wages,161,15 26 | second_quarter_contributions,176,13 27 | second_quarter_average_weekly_wage,189,8 28 | third_quarter_status_code,197,1 29 | third_quarter_number_of_establishments,198,8 30 | july_employment,206,9 31 | august_employment,215,9 32 | september_employment,224,9 33 | third_quarter_total_wages,233,15 34 | third_quarter_taxable_wages,248,15 35 | third_quarter_contributions,263,13 36 | third_quarter_average_weekly_wage,276,8 37 | fourth_quarter_status_code,284,1 38 | fourth_quarter_number_of_establishments,285,8 39 | october_employment,293,9 40 | november_employment,302,9 41 | december_employment,311,9 42 | fourth_quarter_total_wages,320,15 43 | fourth_quarter_taxable_wages,335,15 44 | fourth_quarter_contributions,350,13 45 | fourth_quarter_average_weekly_wage,363,8 46 | annual_status_code,371,1 47 | annual_average_number_of_establishments,372,8 48 | annual_average_employment,380,9 49 | annual_total_wages,389,15 50 | annual_taxable_wages,404,15 51 | annual_contributions,419,13 52 | annual_average_weekly_wage,432,8 53 | annual_average_pay,440,9 54 | -------------------------------------------------------------------------------- /us/census/acs2010_geo_schema.csv: -------------------------------------------------------------------------------- 1 | column,start,length,description 2 | FILEID,0,6,File Identification 3 | STUSAB,6,2,State Postal Abbreviation 4 | SUMLEV,8,3,Summary Level 5 | GEOCOMP,11,2,geographic Component 6 | LOGRECNO,13,7,Logical Record Number 7 | US,20,1,US 8 | REGION,21,1,Region 9 | DIVISION,22,1,Division 10 | STATECE,23,2,State (Census Code) 11 | STATE,25,2,State (FIPS Code) 12 | COUNTY,27,3,County 13 | COUSUB,30,5,County Subdivision (FIPS) 14 | PLACE,35,5,Place (FIPS Code) 15 | TRACT,40,6,Census Tract 16 | BLKGRP,46,1,Block Group 17 | CONCIT,47,5,Consolidated City 18 | AIANHH,52,4,American Indian Area/Alaska Native Area/Hawaiian Home Land (Census) 19 | AIANHHFP,56,5,American Indian Area/Alaska Native Area/Hawaiian Home Land (FIPS) 20 | AIHHTLI,61,1,American Indian Trust Land/Hawaiian Home Land Indicator 21 | AITSCE,62,3,American Indian Tribal Subdivision (Census) 22 | AITS,65,5,American Indian Tribal Subdivision (FIPS) 23 | ANRC,70,5,Alaska Native Regional Corporation (FIPS) 24 | CBSA,75,5,Metropolitan and Micropolitan Statistical Area 25 | CSA,80,3,Combined Statistical Area 26 | METDIV,83,5,Metropolitan Division 27 | MACC,88,1,Metropolitan Area Central City 28 | MEMI,89,1,Metropolitan/Micropolitan Indicator Flag 29 | NECTA,90,5,New England City and Town Combined Statistical Area 30 | CNECTA,95,3,New England City and Town Area 31 | NECTADIV,98,5,New England City and Town Area Division 32 | UA,103,5,Urban Area 33 | UACP,108,5,Urban Area Central Place 34 | CDCURR,113,2,Current Congressional District 35 | SLDU,115,3,State Legislative District Upper 36 | SLDL,118,3,State Legislative District Lower 37 | VTD,121,6,Voting District 38 | ZCTA3,127,3,ZIP Code Tabulation Area (3-digit) 39 | ZCTA5,130,5,ZIP Code Tabulation Area (5-digit) 40 | SUBMCD,135,5,Subbarrio (FIPS) 41 | SDELM,140,5,School District (Elementary) 42 | SDSEC,145,5,School District (Secondary) 43 | SDUNI,150,5,School District (Unified) 44 | UR,155,1,Urban/Rural 45 | PCI,156,1,Principal City Indicator 46 | TAZ,157,6,Traffic Analysis Zone 47 | UGA,163,5,Urban Growth Area 48 | PUMA5,168,5,Public Use Microdata Area - 5% File 49 | PUMA1,173,5,Public Use Microdata Area - 1% File 50 | GEOID,178,40,geographic Identifier 51 | NAME,218,200,Area Name 52 | -------------------------------------------------------------------------------- /us/census/census2000_geo_schema.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | FILEID,1,6 3 | STUSAB,7,2 4 | SUMLEV,9,3 5 | GEOCOMP,12,2 6 | CHARITER,14,3 7 | CIFSN,17,2 8 | LOGRECNO,19,7 9 | REGION,26,1 10 | DIVISION,27,1 11 | STATECE,28,2 12 | STATE,30,2 13 | COUNTY,32,3 14 | COUNTYSC,35,2 15 | COUSUB,37,5 16 | COUSUBCC,42,2 17 | COUSUBSC,44,2 18 | PLACE,46,5 19 | PLACECC,51,2 20 | PLACEDC,53,1 21 | PLACESC,54,2 22 | TRACT,56,6 23 | BLKGRP,62,1 24 | BLOCK,63,4 25 | IUC,67,2 26 | CONCIT,69,5 27 | CONCITCC,74,2 28 | CONCITSC,76,2 29 | AIANHH,78,4 30 | AIANHHFP,82,5 31 | AIANHHCC,87,2 32 | AIHHTLI,89,1 33 | AITSCE,90,3 34 | AITS,93,5 35 | AITSCC,98,2 36 | ANRC,100,5 37 | ANRCCC,105,2 38 | MSACMSA,107,4 39 | MASC,111,2 40 | CMSA,113,2 41 | MACCI,115,1 42 | PMSA,116,4 43 | NECMA,120,4 44 | NECMACCI,124,1 45 | NECMASC,125,2 46 | EXI,127,1 47 | UA,128,5 48 | UASC,133,2 49 | UATYPE,135,1 50 | UR,136,1 51 | CD106,137,2 52 | CD108,139,2 53 | CD109,141,2 54 | CD110,143,2 55 | SLDU,145,3 56 | SLDL,148,3 57 | VTD,151,6 58 | VTDI,157,1 59 | ZCTA3,158,3 60 | ZCTA5,161,5 61 | SUBMCD,166,5 62 | SUBMCDCC,171,2 63 | AREALAND,173,14 64 | AREAWATR,187,14 65 | NAME,201,90 66 | FUNCSTAT,291,1 67 | GCUNI,292,1 68 | POP100,293,9 69 | RES,302,9 70 | INTPTLAT,311,9 71 | INTPTLON,320,10 72 | LSADC,330,2 73 | PARTFLAG,332,1 74 | SDELM,333,5 75 | SDSEC,338,5 76 | SDUNI,343,5 77 | TAZ,348,6 78 | UGA,354,5 79 | PUMA5,359,5 80 | PUMA1,364,5 81 | RESERVE2,369,15 82 | MACC,384,5 83 | UACP,389,5 84 | RESERVED,394,7 85 | -------------------------------------------------------------------------------- /us/census/census2010_geo_schema.csv: -------------------------------------------------------------------------------- 1 | column,start,length,description 2 | FILEID,0,6,File Identification 3 | STUSAB,6,2,State/U.S. Abbreviation (USPS) 4 | SUMLEV,8,3,Summary Level 5 | GEOCOMP,11,2,Geographic Component 6 | CHARITER,13,3,Characteristic Iteration 7 | CIFSN,16,2,Characteristic Iteration File Sequence Number 8 | LOGRECNO,18,7,Logical Record Number 9 | REGION,25,1,Region 10 | DIVISION,26,1,Division 11 | STATE,27,2,State (FIPS) 12 | COUNTY,29,3,County 13 | COUNTYCC,32,2,FIPS County Class Code 14 | COUNTYSC,34,2,County Size Code 15 | COUSUB,36,5,County Subdivision (FIPS) 16 | COUSUBCC,41,2,FIPS County Subdivision Class Code 17 | COUSUBSC,43,2,County Subdivision Size Code 18 | PLACE,45,5,Place (FIPS) 19 | PLACECC,50,2,FIPS Place Class Code 20 | PLACESC,52,2,Place Size Code 21 | TRACT,54,6,Census Tract 22 | BLKGRP,60,1,Block Group 23 | BLOCK,61,4,Block 24 | IUC,65,2,Internal Use Code 25 | CONCIT,67,5,Consolidated City (FIPS) 26 | CONCITCC,72,2,FIPS Consolidated City Class Code 27 | CONCITSC,74,2,Consolidated City Size Code 28 | AIANHH,76,4,American Indian Area/Alaska Native Area/ Hawaiian Home Land (Census) 29 | AIANHHFP,80,5,American Indian Area/Alaska Native Area/ Hawaiian Home Land (FIPS) 30 | AIANHHCC,85,2,FIPS American Indian Area/Alaska Native Area/Hawaiian Home Land Class Code 31 | AIHHTLI,87,1,American Indian Trust Land/Hawaiian Home Land Indicator 32 | AITSCE,88,3,American Indian Tribal Subdivision (Census) 33 | AITS,91,5,American Indian Tribal Subdivision (FIPS) 34 | AITSCC,96,2,FIPS American Indian Tribal Subdivision Class Code 35 | TTRACT,98,6,Tribal Census Tract 36 | TBLKGRP,104,1,Tribal Block Group 37 | ANRC,105,5,Alaska Native Regional Corporation (FIPS) 38 | ANRCCC,110,2,FIPS Alaska Native Regional Corporation Class Code 39 | CBSA,112,5,Metropolitan Statistical Area/Micropolitan Statistical Area 40 | CBSASC,117,2,Metropolitan Statistical Area/Micropolitan Statistical Area Size Code 41 | METDIV,119,5,Metropolitan Division 42 | CSA,124,3,Combined Statistical Area 43 | NECTA,127,5,New England City and Town Area 44 | NECTASC,132,2,New England City and Town Area Size Code 45 | NECTADIV,134,5,New England City and Town Area Division 46 | CNECTA,139,3,Combined New England City and Town Area 47 | CBSAPCI,142,1,Metropolitan Statistical Area/Micropolitan Statistical Area Principal City Indicator 48 | NECTAPCI,143,1,New England City and Town Area Principal City Indicator 49 | UA,144,5,Urban Area 50 | UASC,149,2,Urban Area Size Code 51 | UATYPE,151,1,Urban Area Type 52 | UR,152,1,Urban/Rural 53 | CD,153,2,Congressional District (111th) 54 | SLDU,155,3,State Legislative District (Upper Chamber) (Year 1) 55 | SLDL,158,3,State Legislative District (Lower Chamber) (Year 1) 56 | VTD,161,6,Voting District 57 | VTDI,167,1,Voting District Indicator 58 | RESERVE2,168,3,Reserved 59 | ZCTA5,171,5,ZIP Code Tabulation Area (5-Digit) 60 | SUBMCD,176,5,Subminor Civil Division (FIPS) 61 | SUBMCDCC,181,2,FIPS Subminor Civil Division Class Code 62 | SDELM,183,5,School District (Elementary) 63 | SDSEC,188,5,School District (Secondary) 64 | SDUNI,193,5,School District (Unified) 65 | AREALAND,198,14,Area (Land) 66 | AREAWATR,212,14,Area (Water) 67 | NAME,226,90,Area Name-Legal/Statistical Area Description (LSAD) Term-Part Indicator 68 | FUNCSTAT,316,1,Functional Status Code 69 | GCUNI,317,1,Geographic Change User Note Indicator 70 | POP100,318,9,Population Count (100%) 71 | HU100,327,9,Housing Unit Count (100%) 72 | INTPTLAT,336,11,Internal Point (Latitude) 73 | INTPTLON,347,12,Internal Point (Longitude) 74 | LSADC,359,2,Legal/Statistical Area Description Code 75 | PARTFLAG,361,1,Part Flag 76 | RESERVE3,362,6,Reserved 77 | UGA,368,5,Urban Growth Area 78 | STATENS,373,8,State (ANSI) 79 | COUNTYNS,381,8,County (ANSI) 80 | COUSUBNS,389,8,County Subdivision (ANSI) 81 | PLACENS,397,8,Place (ANSI) 82 | CONCITNS,405,8,Consolidated City (ANSI) 83 | AIANHHNS,413,8,American Indian Area/Alaska Native Area/ Hawaiian Home Land (ANSI) 84 | AITSNS,421,8,American Indian Tribal Subdivision (ANSI) 85 | ANRCNS,429,8,Alaska Native Regional Corporation (ANSI) 86 | SUBMCDNS,437,8,Subminor Civil Division (ANSI) 87 | CD113,445,2,Congressional District (113th) 88 | CD114,447,2,Congressional District (114th) 89 | CD115,449,2,Congressional District (115th) 90 | SLDU2,451,3,State Legislative District (Upper Chamber) (Year 2) 91 | SLDU3,454,3,State Legislative District (Upper Chamber) (Year 3) 92 | SLDU4,457,3,State Legislative District (Upper Chamber) (Year 4) 93 | SLDL2,460,3,State Legislative District (Lower Chamber) (Year 2) 94 | SLDL3,463,3,State Legislative District (Lower Chamber) (Year 3) 95 | SLDL4,466,3,State Legislative District (Lower Chamber) (Year 4) 96 | AIANHHSC,469,2,American Indian Area/Alaska Native Area/ Hawaiian Home Land Size Code 97 | CSASC,471,2,Combined Statistical Area Size Code 98 | CNECTASC,473,2,Combined NECTA Size Code 99 | MEMI,475,1,Metropolitan/Micropolitan Indicator 100 | NMEMI,476,1,NECTA Metropolitan/Micropolitan Indicator 101 | PUMA,477,5,Public Use Microdata Area 102 | RESERVED,482,18,Reserved 103 | -------------------------------------------------------------------------------- /us/census/saipe1998-2012_schema.csv: -------------------------------------------------------------------------------- 1 | column,start,description,length 2 | "FIPS_STATE",0,"FIPS state code",2 3 | "FIPS_COUNTY",3,"FIPS county code ( 0 for US or state level records)",3 4 | "TOTAL_ALL",7,"Estimate of people of all ages in poverty",8 5 | "TOTAL_ALL_LCI",16,"90% confidence interval lower bound of estimate of people of all ages in poverty",8 6 | "TOTAL_ALL_UCI",25,"90% confidence interval upper bound of estimate of people of all ages in poverty",8 7 | "PCT_ALL",34,"Estimated percent of people of all ages in poverty",4 8 | "PCT_ALL_LCI",39,"90% confidence interval lower bound of estimate of percent of people of all ages in poverty",4 9 | "PCT_ALL_UCI",44,"90% confidence interval upper bound of estimate of percent of people of all ages in poverty",4 10 | "TOTAL_0_17",49,"Estimate of people age 0-17 in poverty",8 11 | "TOTAL_0_17_LCI",58,"90% confidence interval lower bound of estimate of people age 0-17 in poverty",8 12 | "TOTAL_0_17_UCI",67,"90% confidence interval upper bound of estimate of people age 0-17 in poverty",8 13 | "PCT_0_17",76,"Estimated percent of people age 0-17 in poverty",4 14 | "PCT_0_17_LCI",81,"90% confidence interval lower bound of estimate of percent of people age 0-17 in poverty",4 15 | "PCT_0_17_UCI",86,"90% confidence interval upper bound of estimate of percent of people age 0-17 in poverty",4 16 | "TOTAL_5_17",91,"Estimate of related children age 5-17 in families in poverty",8 17 | "TOTAL_5_17_LCI",100,"90% confidence interval lower bound of estimate of related children age 5-17 in families in poverty",8 18 | "TOTAL_5_17_UCI",109,"90% confidence interval upper bound of estimate of related children age 5-17 in families in poverty",8 19 | "PCT_5_17",118,"Estimated percent of related children age 5-17 in families in poverty",4 20 | "PCT_5_17_LCI",123,"90% confidence interval lower bound of estimate of percent of related children age 5-17 in families in poverty",4 21 | "PCT_5_17_UCI",128,"90% confidence interval upper bound of estimate of percent of related children age 5-17 in families in poverty",4 22 | "INCOME",133,"Estimate of median household income",6 23 | "INCOME_LCI",140,"90% confidence interval lower bound of estimate of median household income",6 24 | "INCOME_UCI",147,"90% confidence interval upper bound of estimate of median household income",6 25 | "TOTAL_0_5",154,"Estimate of people under age 5 in poverty",7 26 | "TOTAL_0_5_LCI",162,"90% confidence interval lower bound of estimate of people under age 5 in poverty",7 27 | "TOTAL_0_5_UCI",170,"90% confidence interval upper bound of estimate of people under age 5 in poverty",7 28 | "PCT_0_5",178,"Estimated percent of people under age 5 in poverty",4 29 | "PCT_0_5_LCI",183,"90% confidence interval lower bound of estimate of percent of people under age 5 in poverty",4 30 | "PCT_0_5_UCI",188,"90% confidence interval upper bound of estimate of percent of people under age 5 in poverty",4 31 | "PLACE",193,"State or county name",45 32 | "ABBR",239,"Two-letter Postal State abbreviation",2 33 | "TIMESTAMP",242,"A tag indicating the file name and date of creation",22 34 | -------------------------------------------------------------------------------- /us/dot/nbi_fixed_schema.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | State_Code,1,3 3 | Structure_Number,4,15 4 | Record_Type,19,1 5 | Route_Signing_Prefix,20,1 6 | Designated_Level_of_Service,21,1 7 | Route_Number,22,5 8 | Directional_Suffix,27,1 9 | Highway_Agency_District,28,2 10 | County_(Parish)_Code,30,3 11 | Place_Code,33,5 12 | Features_Intersected,38,24 13 | Critical_Facility_Indicator,62,1 14 | Facility_Carried_By_Structure,63,18 15 | Location,81,25 16 | "Inventory_Rte,_Min_Vert_Clearance",106,4 17 | Kilometerpoint,110,7 18 | Base_Highway_Network,117,1 19 | LRS_Inventory_Route,118,10 20 | Subroute_Number,128,2 21 | Latitude,130,8 22 | Longitude,138,9 23 | Bypass/Detour_Length,147,3 24 | Toll,150,1 25 | Maintenance_Responsibility,151,2 26 | Owner,153,2 27 | Functional_Class_Of_Inventory_Rte.,155,2 28 | Year_Built,157,4 29 | Lanes_On_Structure,161,2 30 | Lanes_Under_Structure,163,2 31 | Average_Daily_Traffic,165,6 32 | Year_Of_Average_Daily_Traffic,171,4 33 | Design_Load,175,1 34 | Approach_Roadway_Width,176,4 35 | Bridge_Median,180,1 36 | Skew,181,2 37 | Structure_Flared,183,1 38 | Bridge_Railings,184,1 39 | Transitions,185,1 40 | Approach_Guardrail,186,1 41 | Approach_Guardrail_Ends,187,1 42 | Historical_significance,188,1 43 | Navigation_Control,189,1 44 | Navigation_Vertical_Clearance,190,4 45 | Navigation_Horizontal_Clearance,194,5 46 | Structure_Open/Posted/Closed,199,1 47 | Type_of_Service_On_Bridge,200,1 48 | Type_of_Service_Under_Bridge,201,1 49 | Kind_of_Material/Design,202,1 50 | Type_of_Design/Construction,203,2 51 | Kind_of_Material/Design,205,1 52 | Type_of_Design/Construction,206,2 53 | Number_Of_Spans_In_Main_Unit,208,3 54 | Number_Of_Approach_Spans,211,4 55 | Inventory_Rte_Total_Horz_Clearance,215,3 56 | Length_Of_Maximum_Span,218,5 57 | Structure_Length,223,6 58 | Left_Curb/Sidewalk_Width,229,3 59 | Right_Curb/Sidewalk_Width,232,3 60 | Bridge_Roadway_Width_Curb-To-Curb,235,4 61 | "Deck_Width,_Out-To-Out",239,4 62 | Min_Vert_Clear_Over_Bridge_Roadway,243,4 63 | Reference_Feature,247,1 64 | Minimum_Vertical_Underclearance,248,4 65 | Reference_Feature,252,1 66 | Minimum_Lateral_Underclearance,253,3 67 | Min_Lateral_Underclear_On_Left,256,3 68 | Deck,259,1 69 | Superstructure,260,1 70 | Substructure,261,1 71 | Channel/Channel_Protection,262,1 72 | Culverts,263,1 73 | Method_Used_To_Determine_Operating_Rating,264,1 74 | Operating_Rating,265,3 75 | Method_Used_To_Determine_Inventory_Rating,268,1 76 | Inventory_Rating,269,3 77 | Structural_Evaluation,272,1 78 | Deck_Geometry,273,1 79 | Underclear_Vertical_&_Horizontal,274,1 80 | Bridge_Posting,275,1 81 | Waterway_Adequacy,276,1 82 | Approach_Roadway_Alignment,277,1 83 | Type_of_Work_Proposed,278,2 84 | Work_Done_By,280,1 85 | Length_Of_Structure_Improvement,281,6 86 | Inspection_Date,287,4 87 | Designated_Inspection_Frequency,291,2 88 | Fracture_Critical_Details,293,3 89 | Underwater_Inspection,296,3 90 | Other_Special_Inspection,299,3 91 | Fracture_Critical_Details_Date,302,4 92 | Underwater_Inspection_Date,306,4 93 | Other_Special_Inspection_Date,310,4 94 | Bridge_Improvement_Cost,314,6 95 | Roadway_Improvement_Cost,320,6 96 | Total_Project_Cost,326,6 97 | Year_Of_Improvement_Cost_Estimate,332,4 98 | Neighboring_State_Code,336,3 99 | Percent_Responsibility,339,2 100 | Border_Bridge_Structure_Number,341,15 101 | STRAHNET_Highway_Designation,356,1 102 | Parallel_Structure_Designation,357,1 103 | Direction_Of_Traffic,358,1 104 | Temporary_Structure_Designation,359,1 105 | Highway_System_Of_Inventory_Route,360,1 106 | Federal_Lands_Highways,361,1 107 | Year_Reconstructed,362,4 108 | Deck_Structure_Type,366,1 109 | Type_of_Wearing_Surface,367,1 110 | Type_of_Membrane,368,1 111 | Deck_Protection,369,1 112 | AVERAGE_DAILY_TRUCK_TRAFFIC,370,2 113 | DESIGNATED_NATIONAL_NETWORK,372,1 114 | PIER/ABUTMENT_PROTECTION,373,1 115 | NBIS_BRIDGE_LENGTH,374,1 116 | SCOUR_CRITICAL_BRIDGES,375,1 117 | FUTURE_AVERAGE_DAILY_TRAFFIC,376,6 118 | YEAR_OF_FUTURE_AVG_DAILY_TRAFFIC,382,4 119 | MINIMUM_NAVIGATION_VERTICAL_CLEARANCE_VERTICAL_LIFT_BRIDGE,386,4 120 | FEDERAL_AGENCY_INDICATOR,391,1 121 | Washington_Headquarters_Use,392,35 122 | STATUS,427,1 123 | Asterisk_Field_in_SR,428,1 124 | SUFFICIENCY_RATING_(select_from_last_4_positions_only),429,4 -------------------------------------------------------------------------------- /us/fec/fec_candidate_master_schema.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | candidate_id,1,9 3 | candidate_name,10,38 4 | party_designation1,48,3 5 | filler,51,3 6 | party_designation3,54,3 7 | incumbent_challenger_open,57,1 8 | filler,58,1 9 | candidate_status,59,1 10 | street1,60,34 11 | street2,94,34 12 | city,128,18 13 | state,146,2 14 | zipcode,148,5 15 | principal_committee_id,153,9 16 | election_year,162,2 17 | current_district,164,2 18 | -------------------------------------------------------------------------------- /us/fec/fec_candidate_master_schema80.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | candid_id,1,9 3 | candidate_name,10,38 4 | party_designation1,48,3 5 | party_designation2,51,3 6 | party_designation3,54,3 7 | incumbent_challenger_open,57,1 8 | state,59,1 9 | street1,60,34 10 | street2,94,34 11 | city,128,18 12 | state,146,2 13 | zipcode,148,5 14 | principal_committee_id,153,9 15 | election_year,162,2 16 | current_district,164,2 17 | -------------------------------------------------------------------------------- /us/fec/fec_candidate_master_schema82.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | candid_id,1,9 3 | candidate_name,10,38 4 | party_designation1,48,3 5 | party_designation2,51,3 6 | party_designation3,54,3 7 | incumbent_challenger_open,57,1 8 | state,59,1 9 | street1,60,34 10 | street2,94,34 11 | city,128,18 12 | state,146,2 13 | zipcode,148,5 14 | principal_committee_id,153,9 15 | election_year,162,2 16 | current_district,164,2 17 | -------------------------------------------------------------------------------- /us/fec/fec_candidate_master_schema84.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | candid_id,1,9 3 | candidate_name,10,38 4 | party_designation1,48,3 5 | party_designation2,51,3 6 | party_designation3,54,3 7 | incumbent_challenger_open,57,1 8 | state,59,1 9 | street1,60,34 10 | street2,94,34 11 | city,128,18 12 | state,146,2 13 | zipcode,148,5 14 | principal_committee_id,153,9 15 | election_year,162,2 16 | current_district,164,2 17 | -------------------------------------------------------------------------------- /us/fec/fec_candidate_master_schema86.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | candid_id,1,9 3 | candidate_name,10,38 4 | party_designation1,48,3 5 | party_designation2,51,3 6 | party_designation3,54,3 7 | incumbent_challenger_open,57,1 8 | state,59,1 9 | street1,60,34 10 | street2,94,34 11 | city,128,18 12 | state,146,2 13 | zipcode,148,5 14 | principal_committee_id,153,9 15 | election_year,162,2 16 | current_district,164,2 17 | -------------------------------------------------------------------------------- /us/fec/fec_candidate_master_schema88.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | candid_id,1,9 3 | candidate_name,10,38 4 | party_designation1,48,3 5 | party_designation3,54,3 6 | incumbent_challenger_open,57,1 7 | state,59,1 8 | street1,60,34 9 | street2,94,34 10 | city,128,18 11 | state,146,2 12 | zipcode,148,5 13 | principal_committee_id,153,9 14 | election_year,162,2 15 | current_district,164,2 16 | -------------------------------------------------------------------------------- /us/fec/fec_candidate_master_schema90.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | candid_id,1,9 3 | candidate_name,10,38 4 | party_designation1,48,3 5 | party_designation3,54,3 6 | incumbent_challenger_open,57,1 7 | state,59,1 8 | street1,60,34 9 | street2,94,34 10 | city,128,18 11 | state,146,2 12 | zipcode,148,5 13 | principal_committee_id,153,9 14 | election_year,162,2 15 | current_district,164,2 16 | -------------------------------------------------------------------------------- /us/fec/fec_candidate_master_schema92.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | candid_id,1,9 3 | candidate_name,10,38 4 | party_designation1,48,3 5 | party_designation3,54,3 6 | incumbent_challenger_open,57,1 7 | state,59,1 8 | street1,60,34 9 | street2,94,34 10 | city,128,18 11 | state,146,2 12 | zipcode,148,5 13 | principal_committee_id,153,9 14 | election_year,162,2 15 | current_district,164,2 16 | -------------------------------------------------------------------------------- /us/fec/fec_candidate_master_schema94.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | candid_id,1,9 3 | candidate_name,10,38 4 | party_designation1,48,3 5 | party_designation3,54,3 6 | incumbent_challenger_open,57,1 7 | state,59,1 8 | street1,60,34 9 | street2,94,34 10 | city,128,18 11 | state,146,2 12 | zipcode,148,5 13 | principal_committee_id,153,9 14 | election_year,162,2 15 | current_district,164,2 16 | -------------------------------------------------------------------------------- /us/fec/fec_candidate_master_schema96.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | candidate_id,1,9 3 | candidate_name,10,38 4 | party_designation1,48,3 5 | filler,51,3 6 | party_designation3,54,3 7 | incumbent_challenger_open,57,1 8 | filler,58,1 9 | candidate_status,59,1 10 | street1,60,34 11 | street2,94,34 12 | city,128,18 13 | state,146,2 14 | zipcode,148,5 15 | principal_committee_id,153,9 16 | election_year,162,2 17 | current_district,164,2 18 | -------------------------------------------------------------------------------- /us/fec/fec_candidate_master_schema98.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | candidate_id,1,9 3 | candidate_name,10,38 4 | party_designation1,48,3 5 | filler,51,3 6 | party_designation3,54,3 7 | incumbent_challenger_open,57,1 8 | filler,58,1 9 | candidate_status,59,1 10 | street1,60,34 11 | street2,94,34 12 | city,128,18 13 | state,146,2 14 | zipcode,148,5 15 | principal_committee_id,153,9 16 | election_year,162,2 17 | current_district,164,2 18 | -------------------------------------------------------------------------------- /us/fec/fec_candidate_summary.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | candidate_id,1,9 3 | candidate_name,10,38 4 | incumbent_challenger_open,48,1 5 | party,49,1 6 | party_designation,50,3 7 | total_receipts,53,10 8 | authorized_transfers_from,63,10 9 | total_disbursements,73,10 10 | transfers_to_authorized,83,10 11 | beginning_cash,93,10 12 | ending_cash,103,10 13 | contributions_from_candidate,113,10 14 | loans_from_candidate,123,10 15 | other_loans,133,10 16 | candidate_loan_repayments,143,10 17 | other_loan_repayments,153,10 18 | debts_owed_by,163,10 19 | total_individual_contributions,173,10 20 | state_code,183,2 21 | district,185,2 22 | special_election_status,187,1 23 | primary_election_status,188,1 24 | runoff_election_status,189,1 25 | general_election_status,190,1 26 | general_election_ct,191,3 27 | contributions_from_other_committees,194,10 28 | contributions_from_party_committees,204,9 29 | ending_date,214,8 30 | refunds_to_individuals,222,10 31 | refunds_to_committees,232,10 32 | -------------------------------------------------------------------------------- /us/fec/fec_committee_master_schema.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | committee_id,1,9 3 | committee_name,10,90 4 | treasurer_name,100,38 5 | street1,138,34 6 | street2,172,34 7 | city,206,18 8 | state,224,2 9 | zipcode,226,5 10 | committee_designation,231,1 11 | committee_type,232,1 12 | committee_party,233,3 13 | filing_frequency,236,1 14 | interest_group_category,237,1 15 | connected_org_name,238,38 16 | candidate_id,276,9 17 | -------------------------------------------------------------------------------- /us/fec/fec_committee_transactions.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | filer_id,1,9 3 | amendment,10,1 4 | report_type,11,3 5 | election_type,14,1 6 | microfilm_location,15,11 7 | transaction_type,26,3 8 | contributor_lender_transfer,29,34 9 | city,63,18 10 | state,81,2 11 | zipcode,83,5 12 | occupation,88,35 13 | transaction_month,123,2 14 | transaction_day,125,2 15 | transaction_century,127,2 16 | transaction_year,129,2 17 | amount,131,7 18 | other_id,138,9 19 | fec_record,147,7 20 | -------------------------------------------------------------------------------- /us/fec/fec_contributions_to_candidates.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | filer_id,1,9 3 | amendment,10,1 4 | report_type,11,3 5 | election_type,14,1 6 | microfilm_location,15,11 7 | transaction_type,26,3 8 | transaction_month,29,2 9 | transaction_day,31,2 10 | transaction_century,33,2 11 | transaction_year,35,2 12 | amount,37,7 13 | other_id,44,9 14 | candidate_id,53,9 15 | fec_record,62,7 16 | -------------------------------------------------------------------------------- /us/fec/fec_contributions_to_candidates80.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | filer_id,1,9 3 | amendment,10,1 4 | report_type,11,3 5 | election_type,14,1 6 | microfilm_location,15,11 7 | transaction_type,26,3 8 | transaction_month,29,2 9 | transaction_day,31,2 10 | transaction_year,33,2 11 | amount,35,6 12 | other_id,41,9 13 | candidate_id,50,9 14 | -------------------------------------------------------------------------------- /us/fec/fec_contributions_to_candidates82.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | filer_id,1,9 3 | amendment,10,1 4 | report_type,11,3 5 | election_type,14,1 6 | microfilm_location,15,11 7 | transaction_type,26,3 8 | transaction_month,29,2 9 | transaction_day,31,2 10 | transaction_year,33,2 11 | amount,35,6 12 | other_id,41,9 13 | candidate_id,50,9 14 | -------------------------------------------------------------------------------- /us/fec/fec_contributions_to_candidates84.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | filer_id,1,9 3 | amendment,10,1 4 | report_type,11,3 5 | election_type,14,1 6 | microfilm_location,15,11 7 | transaction_type,26,3 8 | transaction_month,29,2 9 | transaction_day,31,2 10 | transaction_year,33,2 11 | amount,35,6 12 | other_id,41,9 13 | candidate_id,50,9 14 | -------------------------------------------------------------------------------- /us/fec/fec_contributions_to_candidates86.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | filer_id,1,9 3 | amendment,10,1 4 | report_type,11,3 5 | election_type,14,1 6 | microfilm_location,15,11 7 | transaction_type,26,3 8 | transaction_month,29,2 9 | transaction_day,31,2 10 | transaction_year,33,2 11 | amount,35,6 12 | other_id,41,9 13 | candidate_id,50,9 14 | -------------------------------------------------------------------------------- /us/fec/fec_contributions_to_candidates88.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | filer_id,1,9 3 | amendment,10,1 4 | report_type,11,3 5 | election_type,14,1 6 | microfilm_location,15,11 7 | transaction_type,26,3 8 | transaction_month,29,2 9 | transaction_day,31,2 10 | transaction_year,33,2 11 | amount,35,6 12 | other_id,41,9 13 | candidate_id,50,9 14 | -------------------------------------------------------------------------------- /us/fec/fec_contributions_to_candidates90.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | filer_id,1,9 3 | amendment,10,1 4 | report_type,11,3 5 | election_type,14,1 6 | microfilm_location,15,11 7 | transaction_type,26,3 8 | transaction_month,29,2 9 | transaction_day,31,2 10 | transaction_year,33,2 11 | amount,35,7 12 | other_id,42,9 13 | candidate_id,51,9 14 | -------------------------------------------------------------------------------- /us/fec/fec_contributions_to_candidates92.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | filer_id,1,9 3 | amendment,10,1 4 | report_type,11,3 5 | election_type,14,1 6 | microfilm_location,15,11 7 | transaction_type,26,3 8 | transaction_month,29,2 9 | transaction_day,31,2 10 | transaction_year,33,2 11 | amount,35,7 12 | other_id,42,9 13 | candidate_id,51,9 14 | -------------------------------------------------------------------------------- /us/fec/fec_contributions_to_candidates94.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | filer_id,1,9 3 | amendment,10,1 4 | report_type,11,3 5 | election_type,14,1 6 | microfilm_location,15,11 7 | transaction_type,26,3 8 | transaction_month,29,2 9 | transaction_day,31,2 10 | transaction_year,33,2 11 | amount,35,7 12 | other_id,42,9 13 | candidate_id,51,9 14 | fec_record,60,7 15 | -------------------------------------------------------------------------------- /us/fec/fec_contributions_to_candidates96.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | filer_id,1,9 3 | amendment,10,1 4 | report_type,11,3 5 | election_type,14,1 6 | microfilm_location,15,11 7 | transaction_type,26,3 8 | transaction_month,29,2 9 | transaction_day,31,2 10 | transaction_century,33,2 11 | transaction_year,35,2 12 | amount,37,7 13 | other_id,44,9 14 | candidate_id,53,9 15 | fec_record,62,7 16 | -------------------------------------------------------------------------------- /us/fec/fec_contributions_to_candidates98.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | filer_id,1,9 3 | amendment,10,1 4 | report_type,11,3 5 | election_type,14,1 6 | microfilm_location,15,11 7 | transaction_type,26,3 8 | transaction_month,29,2 9 | transaction_day,31,2 10 | transaction_century,33,2 11 | transaction_year,35,2 12 | amount,37,7 13 | other_id,44,9 14 | candidate_id,53,9 15 | fec_record,62,7 16 | -------------------------------------------------------------------------------- /us/fec/fec_individual_contributions.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | filer_id,1,9 3 | amendment,10,1 4 | report_type,11,3 5 | election_type,14,1 6 | microfilm_location,15,11 7 | transaction_type,26,3 8 | contributor_lender_transfer,29,34 9 | city,63,18 10 | state,81,2 11 | zipcode,83,5 12 | occupation,88,35 13 | transaction_month,123,2 14 | transaction_day,125,2 15 | transaction_century,127,2 16 | transaction_year,129,2 17 | amount,131,7 18 | other_id,138,9 19 | fec_record,147,7 20 | -------------------------------------------------------------------------------- /us/fec/fec_individual_contributions80.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | filer_id,1,9 3 | amendment,10,1 4 | report_type,11,3 5 | election_type,14,1 6 | microfilm_location,15,11 7 | transaction_type,26,3 8 | contributor_lender_transfer,29,34 9 | street_address,63,34 10 | city,97,18 11 | state,115,2 12 | zipcode,117,5 13 | occupation,122,35 14 | transaction_month,157,2 15 | transaction_day,159,2 16 | transaction_year,161,2 17 | amount,163,6 18 | other_id,169,9 19 | filler,178,3 20 | -------------------------------------------------------------------------------- /us/fec/fec_individual_contributions82.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | filer_id,1,9 3 | amendment,10,1 4 | report_type,11,3 5 | election_type,14,1 6 | microfilm_location,15,11 7 | transaction_type,26,3 8 | contributor_lender_transfer,29,34 9 | street_address,63,34 10 | city,97,18 11 | state,115,2 12 | zipcode,117,5 13 | occupation,122,35 14 | transaction_month,157,2 15 | transaction_day,159,2 16 | transaction_year,161,2 17 | amount,163,6 18 | other_id,169,9 19 | filler,178,3 20 | -------------------------------------------------------------------------------- /us/fec/fec_individual_contributions84.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | filer_id,1,9 3 | amendment,10,1 4 | report_type,11,3 5 | election_type,14,1 6 | microfilm_location,15,11 7 | transaction_type,26,3 8 | contributor_lender_transfer,29,34 9 | street_address,63,34 10 | city,97,18 11 | state,115,2 12 | zipcode,117,5 13 | occupation,122,35 14 | transaction_month,157,2 15 | transaction_day,159,2 16 | transaction_year,161,2 17 | amount,163,6 18 | other_id,169,9 19 | filler,178,3 20 | -------------------------------------------------------------------------------- /us/fec/fec_individual_contributions86.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | filer_id,1,9 3 | amendment,10,1 4 | report_type,11,3 5 | election_type,14,1 6 | microfilm_location,15,11 7 | transaction_type,26,3 8 | contributor_lender_transfer,29,34 9 | street_address,63,34 10 | city,97,18 11 | state,115,2 12 | zipcode,117,5 13 | occupation,122,35 14 | transaction_month,157,2 15 | transaction_day,159,2 16 | transaction_year,161,2 17 | amount,163,6 18 | other_id,169,9 19 | filler,178,3 20 | -------------------------------------------------------------------------------- /us/fec/fec_individual_contributions88.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | filer_id,1,9 3 | amendment,10,1 4 | report_type,11,3 5 | election_type,14,1 6 | microfilm_location,15,11 7 | transaction_type,26,3 8 | contributor_lender_transfer,29,34 9 | street_address,63,34 10 | city,97,18 11 | state,115,2 12 | zipcode,117,5 13 | occupation,122,35 14 | transaction_month,157,2 15 | transaction_day,159,2 16 | transaction_year,161,2 17 | amount,163,6 18 | other_id,169,9 19 | filler,178,3 20 | -------------------------------------------------------------------------------- /us/fec/fec_individual_contributions90.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | filer_id,1,9 3 | amendment,10,1 4 | report_type,11,3 5 | election_type,14,1 6 | microfilm_location,15,11 7 | transaction_type,26,3 8 | contributor_lender_transfer,29,34 9 | city,63,18 10 | state,81,2 11 | zipcode,83,5 12 | occupation,88,35 13 | transaction_month,123,2 14 | transaction_month,125,2 15 | transaction_month,127,2 16 | amount,129,7 17 | other_id,136,9 18 | fec_record,145,7 19 | -------------------------------------------------------------------------------- /us/fec/fec_individual_contributions92.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | filer_id,1,9 3 | amendment,10,1 4 | report_type,11,3 5 | election_type,14,1 6 | microfilm_location,15,11 7 | transaction_type,26,3 8 | contributor_lender_transfer,29,34 9 | city,63,18 10 | state,81,2 11 | zipcode,83,5 12 | occupation,88,35 13 | transaction_month,123,2 14 | transaction_day,125,2 15 | transaction_year,127,2 16 | amount,129,7 17 | other_id,136,9 18 | fec_record,145,7 19 | -------------------------------------------------------------------------------- /us/fec/fec_individual_contributions94.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | filer_id,1,9 3 | amendment,10,1 4 | report_type,11,3 5 | election_type,14,1 6 | microfilm_location,15,11 7 | transaction_type,26,3 8 | contributor_lender_transfer,29,34 9 | city,63,18 10 | state,81,2 11 | zipcode,83,5 12 | occupation,88,35 13 | transaction_month,123,2 14 | transaction_day,125,2 15 | transaction_year,127,2 16 | amount,129,7 17 | other_id,136,9 18 | fec_record,145,7 19 | -------------------------------------------------------------------------------- /us/fec/fec_individual_contributions96.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | filer_id,1,9 3 | amendment,10,1 4 | report_type,11,3 5 | election_type,14,1 6 | microfilm_location,15,11 7 | transaction_type,26,3 8 | contributor_lender_transfer,29,34 9 | city,63,18 10 | state,81,2 11 | zipcode,83,5 12 | occupation,88,35 13 | transaction_month,123,2 14 | transaction_day,125,2 15 | transaction_century,127,2 16 | transaction_year,129,2 17 | amount,131,7 18 | other_id,138,9 19 | fec_record,147,7 20 | -------------------------------------------------------------------------------- /us/fec/fec_individual_contributions98.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | filer_id,1,9 3 | amendment,10,1 4 | report_type,11,3 5 | election_type,14,1 6 | microfilm_location,15,11 7 | transaction_type,26,3 8 | contributor_lender_transfer,29,34 9 | city,63,18 10 | state,81,2 11 | zipcode,83,5 12 | occupation,88,35 13 | transaction_month,123,2 14 | transaction_day,125,2 15 | transaction_century,127,2 16 | transaction_year,129,2 17 | amount,131,7 18 | other_id,138,9 19 | fec_record,147,7 20 | -------------------------------------------------------------------------------- /us/fec/fec_pac_summary.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | committee_id,1,9 3 | committee_name,10,90 4 | committee_type,100,1 5 | committee_designation,101,1 6 | filing_frequency,102,1 7 | total_receipts,103,10 8 | transfers_from_affiliates,113,10 9 | individual_contributions,123,10 10 | contributions_from_other_committees,133,10 11 | contributions_from_candidate,143,10 12 | candidate_loans,153,10 13 | total_loans_received,163,10 14 | total_disbursements,173,10 15 | transfers_to_affiliates,183,10 16 | refunds_to_individuals,193,10 17 | refunds_to_committees,203,10 18 | candidate_loan_repayments,213,10 19 | loan_repayments,223,10 20 | cash_beginning_of_year,233,10 21 | cash_close_of_period,243,10 22 | debts_owed,253,10 23 | nonfederal_transfers_received,263,10 24 | contributions_to_committees,273,10 25 | independent_expenditures_made,283,10 26 | party_coordinated_expenditures_made,293,10 27 | nonfederal_expenditure_share,303,10 28 | through_month,313,2 29 | through_day,315,2 30 | through_year,317,4 31 | -------------------------------------------------------------------------------- /us/irs/irs_exempt_org_schema.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | ein,1,9 3 | primary_name,10,70 4 | in_care_of_name,80,35 5 | street_address,115,35 6 | city,150,22 7 | state,172,2 8 | zip_code,174,10 9 | group_exemption_number,184,4 10 | subsection_code,188,2 11 | affiliation_code,190,1 12 | classification_codes,191,4 13 | ruling_date,195,6 14 | deductibility_code,201,1 15 | foundation_code,202,2 16 | activity_codes,204,9 17 | organization_code,213,1 18 | exempt_status_code,214,2 19 | filler,216,6 20 | tax_period,222,6 21 | asset_code,228,1 22 | income_code,229,1 23 | filing_requirement_code,230,2 24 | pf_filing_requirement_code,232,1 25 | filler2,233,3 26 | accounting_period,236,2 27 | asset_amount,238,13 28 | income_amount,251,13 29 | negative_income_flag,264,1 30 | revenues_990,265,13 31 | negative_revenues_990_flag,278,1 32 | ntee_code,279,4 33 | sort_name,283,35 -------------------------------------------------------------------------------- /us/nacjd/leaic_2005.csv: -------------------------------------------------------------------------------- 1 | column,length,start 2 | STATE,2,1 3 | COUNTY,35,3 4 | AGENCY,150,38 5 | FSTATE,2,188 6 | FCOUNTY,3,190 7 | FPLACE,5,193 8 | PLACENM,52,198 9 | FMSA,4,250 10 | FMSANAME,65,254 11 | GOVIDNU,9,319 12 | GOVNAME,64,328 13 | GOVTYPE,2,392 14 | AGENCYID,16,394 15 | AGENTYPE,1,410 16 | SPECFUNC,2,411 17 | MULTPLC,1,413 18 | HQCODE,8,414 19 | CLASSCD,2,422 20 | PARTOFCD,5,424 21 | PARTOFNM,52,429 22 | OTHCODE,5,481 23 | OTHNAME,52,486 24 | ORI7,7,538 25 | ORI9,9,545 26 | UCOVBY,7,554 27 | USTATENO,2,561 28 | UMULTICO,1,563 29 | UCNTY1,3,564 30 | UCNTY2,3,567 31 | UCNTY3,3,570 32 | UMSA1,3,573 33 | UMSA2,3,576 34 | UMSA3,3,579 35 | UPOPGRP,2,582 36 | UPOPTOT,9,584 37 | UPOP1,9,593 38 | UPOP2,9,602 39 | UPOP3,9,611 40 | UDIV,1,620 41 | UJUVAGE,2,621 42 | UCORE,1,623 43 | ULASTUP,6,624 44 | CPOP,11,630 45 | LAT,12,641 46 | LONG,12,653 47 | POP,9,665 48 | HOUSE,8,674 49 | MILES,14,682 50 | ZIPCODE,5,696 51 | ZIPRANGE,2,701 52 | SOURCE,1,703 -------------------------------------------------------------------------------- /us/nacjd/lemas_2003.csv: -------------------------------------------------------------------------------- 1 | column,start,length,variable_label 2 | AGENCYID,0,16,AGENCY ID 3 | AGENCYNA,16,44,AGENCY NAME 4 | COUNTY,60,32,COUNTY NAME 5 | STREET,92,45,STREET ADDRESS (2000) 6 | CITY,137,32,CITY 7 | STATE,169,3,STATE 8 | ZIP,172,15,ZIP CODE 9 | PHONE,187,10,PHONE NUMBER 10 | FAX,197,10,FAX NUMBER 11 | FIPS,207,15,FIPS CODE 12 | MSACSMA,222,15,MSACSMA CODE 13 | POP,237,8,2003 POPULATION 14 | AGCYTYPE,245,1,AGENCY TYPE 15 | FORMTYPE,246,1,FORM TYPE 16 | V1,247,1,Q1.FUNCTIONS - RESPONDING TO CITIZEN CALLS 17 | V2,248,1,Q1.FUNCTIONS - PATROL SERVICES 18 | V3,249,1,Q1.FUNCTIONS - RESPONSE TO CRIME INCIDENTS 19 | V4,250,1,Q1.FUNCTIONS - DRUG LAW ENFORCEMENT 20 | V5,251,1,Q1.FUNCTIONS - VICE ENFORCEMENT 21 | V6,252,1,Q1.FUNCTIONS- TRAFFIC LAW ENFORCEMENT 22 | V7,253,1,Q1.FUNCTIONS - TRAFFIC DIRECTION/CONTROL 23 | V8,254,1,Q1.FUNCTIONS - ACCIDENT INVESTIGATION 24 | V9,255,1,Q1.FUNCTIONS - PARKING ENFORCEMENT 25 | V10,256,1,Q1.FUNCTIONS - COMMERCIAL VEHICLE ENFORCEMENT 26 | V11,257,1,Q1.FUNCTIONS - HOMICIDE 27 | V12,258,1,Q1.FUNCTIONS - ARSON 28 | V13,259,1,Q1.FUNCTIONS - CYBERCRIME 29 | V14,260,1,Q1.FUNCTIONS - OTHER CRIME TYPES 30 | V15,261,1,Q1.FUNCTIONS - EXECUTION OF ARREST WARRANTS 31 | V16,262,1,Q1.FUNCTIONS - COURT SECURITY 32 | V17,263,1,Q1.FUNCTIONS - SERVING CIVIL PROCESS 33 | V18,264,1,Q1.FUNCTIONS - SERVING VICTION NOTICES 34 | V19,265,1,Q1.FUNCTIONS - ENFORCING PROTECTION ORDERS 35 | V20,266,1,Q1.FUNCTIONS - ENFORCING CHILD SUPPORT ORDER 36 | V21,267,1,Q1.FUNCTIONS - ANIMAL CONTROL 37 | V22,268,1,Q1.FUNCTIONS - SCHOOL ROSSING SERVICES 38 | V23,269,1,Q1.FUNCTIONS - EMERGENCY MEDICAL SERVICES 39 | V24,270,1,Q1.FUNCTIONS - CIVIL DEFENSE 40 | V25,271,1,Q1.FUNCTIONS - FIRE SERVICES 41 | V26,272,1,Q1.FUNCTIONS - CRIME PREVENTION EDUCATATION 42 | V27,273,1,Q1.FUNCTIONS - BOMB/EXPLOSIVES DISPOSAL 43 | V28,274,1,Q1.FUNCTIONS - SEARCH AND RESCUE 44 | V29,275,1,Q1.FUNCTIONS - SPECIAL WEAPONS/TACTICS(SWAT) 45 | V30,276,1,Q1.FUNCTIONS - UNDERWATER RECOVERY 46 | V31,277,1,Q1.FUNCTIONS - JAIL OPERATION 47 | V32,278,1,Q1.FUNCTIONS - LOCKUP FACILITY 48 | V33,279,1,Q1.FUNCTIONS - TEMPORARY HOLDING CELL 49 | V34,280,1,Q1.FUNCTIONS - INMATE TRANSPORT 50 | V35,281,1,Q1.FUNCTIONS - LAW ENFORC DISPATCH SERVICES 51 | V36,282,1,Q1.FUNCTIONS - FIRE DISPATCH SERVICES 52 | V37,283,1,Q1.FUNCTIONS - OPERATNG TRAINING ACADEMY 53 | V38,284,3,Q2.# DISTR./PRECINCT/DIVISION STATIONS 54 | V39,287,2,Q2.# FIXED NEIGHBORHOOD SUBSTATIONS 55 | V40,289,2,Q2.# MOBILE NEIGHBORHOOD SUBSTATIONS 56 | V41,291,5,Q3.AUTHORIZED SWORN WITH ARREST F/T 57 | V42,296,5,Q3.ACTUAL PAID SWORN WITH ARREST F/T 58 | V43,301,3,Q3.ACTUAL PAID SWORN WITH ARREST P/T 59 | V44,304,4,Q3.AUTHORIZED OFFICERS W/O ARREST F/T 60 | V45,308,4,Q3.ACTUAL PAID OFFICERS W/O ARREST F/T 61 | V46,312,3,Q3.ACTUAL PAID SWORN W/O ARREST P/T 62 | V47,315,5,Q3.AUTHORIZED NONSWORN F/T 63 | V48,320,5,Q3.ACTUAL PAID NONSWORN F/T 64 | V49,325,3,Q3.ACTUAL PAID NONSWORN P/T 65 | V50,328,5,Q3.TOTAL AUTHORIZED F/T 66 | V51,333,5,Q3.TOTAL ACTUAL PAID F/T 67 | V52,338,3,Q3.TOTAL ACTUAL PAID P/T 68 | V53,341,3,Q4.RESERVE/AUXILLIARY SWORN F/T 69 | V54,344,3,Q4.RESERVE/AUXILLIARY SWORN P/T 70 | V55,347,3,Q4.RESERVE/AUXILLIARY NONSWORN F/T 71 | V56,350,4,Q4.RESERVE/AUXILLIARY NONSWORN P/T 72 | V57,354,3,Q5.HOW MANY COMMUNICATIONS TECHNICIANS 73 | V58,357,5,Q6. OFFICERS W/ REGULARLY ASSIGNED DUTIES 74 | V59,362,4,Q6. COMMUNITY POLICING OFFICERS 75 | V60,366,3,Q6. SCHOOL SAFETY OFFICERS 76 | V61,369,5,Q7. PRIMARY JOB: PATROL DUTIES 77 | V62,374,4,Q7. PRIMARY JOB: INVESTIGATIVE DUTIES 78 | V63,378,4,Q7. PRIMARY JOB: JAIL-RELATED DUTIES 79 | V64,382,4,Q7. PRIMARY JOB: COURT SECURITY DUTIES 80 | V65,386,3,Q7. PRIMARY JOB: PROCEESS SERVING DUTIES 81 | V66,389,10,Q8. TOTAL OPERATING BUDGET FOR 12 MONTHS 82 | V67,399,1,Q8. OPERATING BUDGET ESTIMATE 83 | V68,400,8,Q9. TOTAL FROM DRUG ASSET FORFEITURE PROGRAM 84 | V69,408,1,Q10.EDUCATION REQUIREMENT FOR RECRUITS 85 | V70,409,2,Q10. NUM OF SEMESTER CREDIT HOURS REQUIRED 86 | V71,411,1,Q11. RECRUITS: PROBLEM-SOLVING ABILITY 87 | V72,412,1,Q11. RECRUITS: UNDERSTANDING DIVERSE CULTURE 88 | V73,413,1,Q11. RECRUITS: BACKGROUND INVESTIGATION 89 | V74,414,1,Q11. RECRUITS: CREDIT HISTORY CHECK 90 | V75,415,1,Q11. RECRUITS: CRIMINAL HISTORY CHECK 91 | V76,416,1,Q11. RECRUITS: DRIVING RECORD CHECK 92 | V77,417,1,Q11. RECRUITS: DRUG TEST 93 | V78,418,1,Q11. RECRUITS: MEDIATION SKILLS ASSESSMENT 94 | V79,419,1,Q11. RECRUITS: MEDICAL EXAM 95 | V80,420,1,Q11. RECRUITS: PERSONAL INTERVIEW 96 | V81,421,1,Q11. RECUITS: PERSONALITY INVENTORY 97 | V82,422,1,Q11. RECRUITS: PHYSICAL AGILITY TEST 98 | V83,423,1,Q11. RECRUITS: POLYGRAPH EXAM 99 | V84,424,1,Q11. RECRUITS: PSYCHOLOGICAL EVALUATION 100 | V85,425,1,Q11. RECRUITS: SECOND LANGUAGE TEST 101 | V86,426,1,Q11. RECRUITS: VOICE STRESS ANALYZER 102 | V87,427,1,Q11. RECRUITS: VOLUNTEER SERVICE HISTORY 103 | V88,428,1,Q11. RECRUITS: WRITTEN APTITUDE TEST 104 | V89,429,4,Q12. ACADMY TRAING-ST-MANDATD HOURS 105 | V90,433,4,Q12. FIELD TRAING-ST-MANDATD HOURS 106 | V91,437,4,Q12. ACADMY TRAINING-OTHER HOURS 107 | V92,441,4,Q12. FIELD TRAINING-OTHER HOURS 108 | V93,445,4,Q12. TOTAL HOURS OF ACADEMY TRAINING 109 | V94,449,4,Q12. TOTAL HOURS OF FIELD TRAINING 110 | V95,453,3,Q13. IN-SERVC TRAING-ST-MANDTD HRS-PATRL 111 | V96,456,3,Q13. IN-SERVICE TRAING-OTHER HRS-PATROL 112 | V97,459,4,Q13. TOTAL HOURS OF TRAINING 113 | V98,463,4,Q14. ENTRY LEVEL HIRES (NON-LATERAL) 114 | V99,467,3,Q14. LATERAL TRANSFERS/HIRES 115 | V100,470,2,Q14. OTHER NEW HIRES 116 | V101,472,199,Q14. OTHER NEW HIRES DESCRIPTION 117 | V102,671,4,Q14. TOTAL NEW HIRES 118 | V103,675,3,Q15. RESIGNATIONS 119 | V104,678,2,Q15. DISMISSALS 120 | V105,680,3,Q15. MEDICAL/DISABILITY RETIREMENTS 121 | V106,683,4,Q15. NON-MEDICAL RETIREMENTS 122 | V107,687,2,Q15. PROBATIONARY REJECTIONS 123 | V108,689,3,Q15. OTHER SEPARATIONS 124 | V109,692,4,Q15. TOTAL SEPARATIONS 125 | V110,696,3,Q16. FULL TIME MILITARY RESERVISTS 126 | V111,699,5,Q17. F/T SWORN WHITE MALES 127 | V112,704,4,Q17. F/T SWORN WHITE FEMALES 128 | V113,708,4,Q17. F/T SWORN BLACK MALES 129 | V114,712,4,Q17. F/T SWORN BLACK FEMALES 130 | V115,716,4,Q17. F/T SWORN HISPANIC MALES 131 | V116,720,4,Q17. F/T SWORN HISPANIC FEMALES 132 | V117,724,3,Q17. F/T SWORN AMER. IND./ALASKA MALES 133 | V118,727,2,Q17. F/T SWORN AMER. IND./ALASKA FEMALE 134 | V119,729,3,Q17. F/T SWORN ASIAN MALES 135 | V120,732,2,Q17. F/T SWORN ASIAN FEMALES 136 | V121,734,3,Q17. F/T SWRN HAWAI/PACIF. ISL. MALES 137 | V122,737,2,Q17. F/T SWRN HAWAI/PACIF. ISL. FEMALES 138 | V123,739,3,Q17. F/T SWORN OTHER RACE MALES 139 | V124,742,2,Q17. F/T SWORN OTHER RACE FEMALES 140 | V125,744,5,Q17. TOTAL MALES 141 | V126,749,4,Q17.TOTAL FEMALES 142 | V127,753,1,Q18. COLLECTIVE BARGAINING FOR SWORN 143 | V128,754,1,Q18. COLLECTIVE BARGAINING FOR NONSWORN 144 | V129,755,1,Q19. EDUCATION INCENTIVE PAY FT SWORN 145 | V130,756,1,Q19. HAZARDOUS DUTY PAY FOR FT SWORN 146 | V131,757,1,Q19. MERIT/PERFORMANCE PAY FOR FT SWORN 147 | V132,758,1,Q19. SHIFT DIFFERENTIAL PAY FT SWORN 148 | V133,759,1,Q19. SPEC. SKILLS PROFIC. PAY FT SWORN 149 | V134,760,1,Q19. BILINGUAL ABILITY PAY FT SWORN 150 | V135,761,1,Q19. TUITION REIMBURSEMENT PAY FT SWORN 151 | V136,762,1,Q19. MILITARY SERVICE PAY FOR FT SWORN 152 | V137,763,6,Q20. MINIMUM SALARY CHIEF EXECUTIVE 153 | V138,769,6,Q20. MAXIMUM SALARY - CHIEF EXECUTIVE 154 | V139,775,6,Q20. MINIMUM SALARY - SERGEANT 155 | V140,781,6,Q20. MAXIMUM SALARY - SERGEANT 156 | V141,787,5,Q20. MINIMUM SALARY- OFFICER 157 | V142,792,6,Q20. MAXIMUM SALARY - OFFICER 158 | V143,798,4,Q21. ADULTS - TOTAL CAPACITY 159 | V144,802,2,Q21. JUVENILES - TOTAL CAPACITY 160 | V145,804,4,Q21. ADULTS MAXIMUM HOLDING TIME 161 | V146,808,3,Q21. JUVENILES MAXIMUM HOLDING TIME 162 | V147,811,1,Q22. 9-1-1 EMERGENCY TELEPHONE SYSTEM 163 | V148,812,1,Q23. DISPLAY PHONE NUM WIRELESS CALLER 164 | V149,813,1,Q23. DISPLAY LOCATION WIRELESS CALLER 165 | V150,814,8,Q24. NUM CALLS/REQUESTS - EMERGENCY 166 | V151,822,7,Q24. NUM CALLS/DISPATCH - EMERGENCY 167 | V152,829,7,Q24. CALLS/REQUESTS 7-DIGIT NON-EMERGENCY 168 | V153,836,7,Q24. CALLS/DISPATCH 7-DIGIT NON-EMERGENCY 169 | V154,843,7,Q24. CALLS/REQUESTS 3-DIGIT NON-EMERGENCY 170 | V155,850,6,Q24. CALLS/DISPATCH 3-DIGIT ON-EMERGE. 171 | V156,856,8,Q24. TOTAL CALLS - REQUESTS 172 | V157,864,7,Q24. TOTAL CALLS - DISPATCH 173 | V158,871,9,Q24. FIGURES REPRESENT ESTIMATES 174 | V159,880,1,Q25. AGENCY USE AUTOMOBILE PATROL 175 | V160,881,1,Q25. AGENCY USE MARINE PATROL 176 | V161,882,1,Q25. AGENCY USE MOTORCYLE PATROL 177 | V162,883,1,Q25. AGENCY USE HORSE PATROL 178 | V163,884,1,Q25. AGENCY USE FOOT PATROL 179 | V164,885,1,Q25. AGENCY USE BICYCLE PATROL 180 | V165,886,1,Q25. AGENCY USE AVIATION PATROL 181 | V166,887,1,Q25. AGENCY USE OTHER PATROL 182 | V167,888,199,Q25. OTHER PATROL TYPE DESCRIPTION 183 | V168,1087,4,Q26. FT SPECIAL DRUG ENFORCEMENT UNIT 184 | V169,1091,3,Q26. PT SPECIAL DRUG ENFORCEMENT UNIT 185 | V170,1094,3,Q26. FT MULTI-AGENCY DRUG TASK FORCE 186 | V171,1097,2,Q26. PT MULTI-AGENCY DRUG TASK FORCE 187 | V172,1099,1,Q27. BIAS/HATE CRIME UNIT 188 | V173,1100,1,Q27. BOMB/EXPLOSIVE DISPOSAL UNIT 189 | V174,1101,1,Q27. CHILD ABUSE/ENDANGERMENT UNIT 190 | V175,1102,1,Q27. COMMUNITY CRIME PREVENTION UNIT 191 | V176,1103,2,Q27. COMMUNITY POLICING UNIT 192 | V177,1105,1,Q27. CRIME ANALYSIS UNIT 193 | V178,1106,1,Q27. CYBERCRIME UNIT 194 | V179,1107,1,Q27. DOMESTIC VIOLENCE UNIT 195 | V180,1108,1,Q27. DRUG EDUCATION IN SCHOOLS UNIT 196 | V181,1109,1,Q27. GANGS UNIT 197 | V182,1110,1,Q27. IMPAIRED DRIVERS UNIT 198 | V183,1111,1,Q27. INTERNAL AFFAIRS UNIT 199 | V184,1112,1,Q27. JUVENILE CRIME UNIT 200 | V185,1113,1,Q27. METHAMPHETAMINE LABS UNIT 201 | V186,1114,1,Q27. MISSING CHILDREN UNIT 202 | V187,1115,1,Q27. PROSECUTOR RELATIONS UNIT 203 | V188,1116,1,Q27. REPEAT OFFENDERS UNIT 204 | V189,1117,1,Q27. RESEARCH AND PLANNING UNIT 205 | V190,1118,1,Q27. SCHOOL SAFETY UNIT 206 | V191,1119,1,Q27. TERRORISM/HOMELAND SECURITY UNIT 207 | V192,1120,1,Q27. VICTIM ASSISTANCE UNIT 208 | V193,1121,1,Q27. YOUTH OUTREACH UNIT 209 | V194,1122,1,Q28. CP TRAINING-NEW OFFICER 210 | V195,1123,1,Q28. CP TRAINING-IN SERVICE SWORN 211 | V196,1124,1,Q28. CP TRAINING-CIVILIAN PERSONNEL 212 | V197,1125,1,Q29. ENCOURAGED SARA-TYPE PROJECTS 213 | V198,1126,3,Q29. SARA-TYPE PERCENTAGE 214 | V199,1129,1,Q29. CONDUCTED CITIZEN POLICE ACADEMY 215 | V200,1130,1,Q29. CREATED COMMUNITY POLICING PLAN 216 | V201,1131,1,Q29. ASSIGNED GEOGRAPHIC AREAS/BEATS 217 | V202,1132,3,Q29. GEOGRAPHIC AREAS/BEATS PERCENTAGE 218 | V203,1135,1,Q29. PROBLEM-SOLVING IN EVAL CRITERIA 219 | V204,1136,1,Q29. TRAINED CITIZENS IN CP 220 | V205,1137,1,Q29. UPGRADED TECHNOLOGY 221 | V206,1138,1,Q29. PARTNERED WITH CITIZEN GROUPS 222 | V207,1139,1,Q29. NONE OF THE ABOVE 223 | V208,1140,1,Q30. MISSION STATEMENT INCLUDED CP 224 | V209,1141,1,Q31. MET W/ ADVOCACY GROUPS 225 | V210,1142,1,Q31. MET W/ BUSINESS GROUP 226 | V211,1143,1,Q31. MET W/ RELIGIOUS GROUP 227 | V212,1144,1,Q31. MET W/ LOCAL GOVERNMENT 228 | V213,1145,1,Q31. MET W/ OTH LOCAL LAW ENF. AGENCY 229 | V214,1146,1,Q31. MET W/ NEIGHBORHOOD ASSOCIATIONS 230 | V215,1147,1,Q31. MET W/ SENIOR CITIZEN GROUPS 231 | V216,1148,1,Q31. MET W/ SCHOOL GROUPS 232 | V217,1149,1,Q31. MET W/ YOUTH SERVICE ORGANIZATIONS 233 | V218,1150,1,Q31. MET W/ NONE OF THE ABOVE 234 | V219,1151,1,Q32A. SURVEYED PUBLIC SATISFACTION 235 | V220,1152,1,Q32A. SURVEYED PUBLIC PERCEPTION 236 | V221,1153,1,Q32A. SURVEYED PERSONAL CRIME EXPERIENCES 237 | V222,1154,1,Q32A. SURVEYED REPORTING OF CRIMES 238 | V223,1155,1,Q32A. SURVEYED OTHER 239 | V224,1156,199,Q32a. OTHER SURVEY DESCRIPTION 240 | V225,1355,1,Q32A. DID NOT SURVEY PUBLIC 241 | V226,1356,1,Q32B. USED INFO FOR ALLOCAT RESOURCES 242 | V227,1357,1,Q32B. USED INFO FOR EVALUAT PERFORMANCE 243 | V228,1358,1,Q32B. USED INFO FOR EVALUAT PERFORMANCE 244 | V229,1359,1,Q32B. USED INFO FOR EVALUAT EFFECTIVENESS 245 | V230,1360,1,Q32B. USED INFO FOR PRIORITZ PROBLEMS 246 | V231,1361,1,Q32B. USED INFO FOR PROVIDING INFO 247 | V232,1362,1,Q32B. USED INFO FOR REDISTRICT AREAS 248 | V233,1363,1,Q32B. USED INFO FOR TRAINING DEVELOPMENT 249 | V234,1364,1,Q32B. USED INFO FOR OTHER 250 | V235,1365,199,Q32b. OTHER PURPOSE DESCRIPTION 251 | V236,1564,1,Q32B. USED INFO FOR NONE OF THE ABOVE 252 | V237,1565,1,Q33A. PLAN FOR TERRORIST ATTACKS 253 | V238,1566,1,Q33B. PLAN INCL COOPERATIVE AGREEMENTS 254 | V239,1567,1,Q34. USE SHARED RADIO NETWORK INFRASTRUCTURE 255 | V240,1568,1,Q35. PERSONAL PROTECTIVE EQUIPMENT(PPE) 256 | V241,1569,1,Q35. CHEMICAL DETECTION EQUIPMENT 257 | V242,1570,1,Q35. RADIOLOGICAL DETECTION EQUIPMENT 258 | V243,1571,1,Q35. BIOLOGICAL DETECTION EQUIPMENT 259 | V244,1572,1,Q35. CHEMICAL/BIOLOGICAL DECONTAMINATION EQUIPMENT 260 | V245,1573,1,Q35. EXPLOSIVES DETECTION EQUIPMENT 261 | V246,1574,1,Q35. HAS NONE OF THE ABOVE 262 | V247,1575,1,Q36. TERRORISM - PARTNER W/COMMUNITIES 263 | V248,1576,1,Q36. TERRORISM - ANTI-FEAR CAMPAIGNS 264 | V249,1577,1,Q36. TERRORISM - DISSEMINATION INFO 265 | V250,1578,1,Q36. TERRORISM - COMMUNITY MEETINGS 266 | V251,1579,1,Q36. TERRORISM - CRITICAL AREAS 267 | V252,1580,1,Q36. TERRORISM - NONE OF THE ABOVE 268 | V253,1581,3,Q37. TERRORISM TASK FORCE-SWORN F/T 269 | V254,1584,2,Q37. TERRORISM TASK FORCE-SWORN P/T 270 | V255,1586,3,Q37. TERRORISM TASK FORCE-OTHER F/T 271 | V256,1589,1,Q37. TERRORISM TASK FORCE-OTHER P/T 272 | V257,1590,3,Q38. INTELLIGENCE PERSONNEL - SWORN 273 | V258,1593,2,Q38. INTELLIGENCE PERSONNEL- NON-SWORN 274 | V259,1595,1,Q39. PRIMARY SIDEARM - SUPPLIED 275 | V260,1596,1,Q39. PRIMARY SIDEARM - CASH ALLOWANCE 276 | V261,1597,1,Q39. PRIMARY SIDEARM - NEITHER 277 | V262,1598,1,Q39. BACKUP SIDEARM - SUPPLIED 278 | V263,1599,1,Q39. BACKUP SIDEARM - CASH ALLOWANCE 279 | V264,1600,1,Q39. BACKUP SIDEARM - NEITHER 280 | V265,1601,1,Q39. BODY ARMOR - SUPPLIED 281 | V266,1602,1,Q39. BODY ARMOR - CASH ALLOWANCE 282 | V267,1603,1,Q39. BODY ARMOR - NEITHER 283 | V268,1604,1,Q39. UNIFORM - SUPPLIED 284 | V269,1605,1,Q39. UNIFORM - CASH ALLOWANCE 285 | V270,1606,1,Q39. UNIFORM - NEITHER 286 | V271,1607,1,Q40. SEMIAUTOMATIC 10MM - PRIMARY SIDEARM 287 | V272,1608,1,Q40. SEMIAUTOMATIC 10MM - BACKUP SIDEARM 288 | V273,1609,1,Q40. SEMIAUTOMATIC 10MM - OFF-DUTY SIDEARM 289 | V274,1610,1,Q40. SEMIAUTOMATIC 9MM - PRIMARY SIDEARM 290 | V275,1611,1,Q40. SEMIAUTOMATIC 9MM - BACKUP SIDEARM 291 | V276,1612,1,Q40. SEMIAUTOMATIC 9MM - OFF-DUTY SIDEARM 292 | V277,1613,1,Q40. SEMIAUTOMATIC .45 - PRIMARY SIDEARM 293 | V278,1614,1,Q40. SEMIAUTOMATIC .45 - BACKUP SIDEARM 294 | V279,1615,1,Q40. SEMIAUTOMATIC .45 - OFF-DUTY SIDEARM 295 | V280,1616,1,Q40. SEMIAUTOMATIC .40 - PRIMARY SIDEARM 296 | V281,1617,1,Q40. SEMIAUTOMATIC .40 - BACKUP SIDEARM 297 | V282,1618,1,Q40. SEMIAUTOMATIC .40 - OFF-DUTY SIDEARM 298 | V283,1619,1,Q40. SEMIAUTOMATIC .357 - PRIMARY SIDEARM 299 | V284,1620,1,Q40. SEMIAUTOMATIC .357 - BACKUP SIDEARM 300 | V285,1621,1,Q40. SEMIAUTOMATIC .357 - OFF-DUTY SIDEARM 301 | V286,1622,1,Q40. SEMIAUTOMATIC .380 - PRIMARY SIDEARM 302 | V287,1623,1,Q40. SEMIAUTOMATIC .380 - BACKUP SIDEARM 303 | V288,1624,1,Q40. SEMIAUTOMATIC .380 - OFF-DUTY SIDEARM 304 | V289,1625,1,Q40. OTHER CALIBER - PRIMARY SIDEARM 305 | V290,1626,1,Q40. OTHER CALIBER - BACKUP SIDEARM 306 | V291,1627,1,Q40. OTHER CALIBER - OFF-DUTY SIDEARM 307 | V292,1628,167,Q40. OTHER CALIBER DESCRIPTION 308 | V293,1795,1,Q40. ANY SEMIAUTOMATIC - PRIMARY SIDEARM 309 | V294,1796,1,Q40. ANY SEMIAUTOMATIC - BACKUP SIDEARM 310 | V295,1797,1,Q40. ANY SEMIAUTOMATIC - OFF-DUTY SIDEARM 311 | V296,1798,1,Q40. REVOLVER - PRIMARY SIDEARM 312 | V297,1799,1,Q40. REVOLVER - BACKUP SIDEARM 313 | V298,1800,1,Q40. REVOLVER - OFF-DUTY SIDEARM 314 | V299,1801,1,Q41. PROTECTIVE BODY ARMOR REQUIRED 315 | V300,1802,2,Q42. # ANIMALS MAINTAINED - DOGS 316 | V301,1804,3,Q42. # ANIMALS MAINTAINED - HORSES 317 | V302,1807,1,Q43. TRADITIONAL BATON 318 | V303,1808,1,Q43. PR-24 BATON 319 | V304,1809,1,Q43. COLLAPSIBLE BATON 320 | V305,1810,1,Q43. SOFT PROJECTILE 321 | V306,1811,1,Q43. BLACKJACK/SLAPJACK 322 | V307,1812,1,Q43. RUBBER BULLET 323 | V308,1813,1,Q43. OTHER IMPACT DEVICE 324 | V309,1814,1,Q43. CHEMICAL AGENT - OC 325 | V310,1815,1,Q43. CHEMICAL AGENT - CN 326 | V311,1816,1,Q43. CHEMICAL AGENT - CS 327 | V312,1817,1,Q43. OTHER CHEMICAL AGENT 328 | V313,1818,1,Q43. HAND-HELD ELECTR. - DIRECT CONTACT 329 | V314,1819,1,Q43. HAND-HELD ELECTRICAL - STAND OFF 330 | V315,1820,1,Q43. HOLD OR NECK RESTRAINT 331 | V316,1821,1,Q43. HIGH INTENSITY LIGHT SOURCE 332 | V317,1822,1,Q43. OTHER WEAPON/ACTION 333 | V318,1823,1,Q44. FINGERPRINTS 334 | V319,1824,1,Q44. MUG SHOTS 335 | V320,1825,1,Q44. SUSPECT COMPOSITES 336 | V321,1826,1,Q44. FACIAL RECOGNITION 337 | V322,1827,1,Q44. DIGITAL PHOTOGRAPHY 338 | V323,1828,1,Q44. OTHER DIGITAL IMAGING 339 | V324,1829,174,Q44. OTHER DIGITIAL IMAGING DESCRIPTION 340 | V325,2003,1,Q44. NONE OF THE LISTED DIGITAL IMAGING 341 | V326,2004,1,Q44. INFRARED (THERMAL) IMAGERS 342 | V327,2005,1,Q44. IMAGE INTENSIFIERS 343 | V328,2006,1,Q44. LASER RANGE FINDERS 344 | V329,2007,1,Q44. OTHER NIGHT VISION/ELECTRO- OPTIC 345 | V330,2008,146,Q44. OTHER NIGHT VISION/ELECTRO-OPTIC DESCRIPTION 346 | V331,2154,1,Q44. NONE NIGHT VISION/ELECTRO-OPTIC 347 | V332,2155,1,Q44. ELECTRICAL/ENGINE DISRUPTION 348 | V333,2156,1,Q44. STOLEN VEHICLE TRACKING 349 | V334,2157,1,Q44. TIRE DEFLATION DEVICES 350 | V335,2158,1,Q44. OTHER VEHICLE STOPPING/TRACKING 351 | V336,2159,194,Q44. OTHER VEHICLE STOPPING/TRACKING DESCRIPTION 352 | V337,2353,1,Q44. NONE VEHICLE STOPPING/TRACKING 353 | V338,2354,4,Q45. MARKED CARS 354 | V339,2358,3,Q45. OTHER MARKED VEHICLES 355 | V340,2361,4,Q45. UNMARKED CARS 356 | V341,2365,3,Q45. OTHER UNMARKED VEHICLES 357 | V342,2368,2,Q45. FIXED-WING AIRCRAFT 358 | V343,2370,2,Q45. HELICOPTERS 359 | V344,2372,2,Q45. BOATS 360 | V345,2374,3,Q45. MOTORCYCLES 361 | V346,2377,3,Q45. BICYCLES 362 | V347,2380,1,Q46A. ALLOWED TO TAKE VEHICLE HOME 363 | V348,2381,1,Q46B. ALLOWED TO DRIVE VEHICLE OFF-DUTY 364 | V349,2382,1,Q47A. OPERATED RED LIGHT CAMERAS 365 | V350,2383,3,Q47A. NUMBER OF RED LIGHT CAMERAS 366 | V351,2386,1,Q47A. SPEED ENFORCEMENT CAMERAS 367 | V352,2387,3,Q47A. NUM SPEED ENFORCEMENT CAMERAS 368 | V353,2390,1,Q48A. OPERATED VIDEO CAMERAS 369 | V354,2391,4,Q48B. VIDEO CAMERAS - PATROL CARS 370 | V355,2395,4,Q48B. VIDEO CAMERAS - FIXED-SITE 371 | V356,2399,3,Q48B. VIDEO CAMERAS - MOBILE 372 | V357,2402,3,Q48B. VIDEO CAMERAS - TRAFFIC ENFORCEMENT 373 | V358,2405,1,Q49. VEHICLE-MOUNTED LAPTOP COMPUTER 374 | V359,2406,4,Q49. # VEHICLE-MOUNTED LAPTOP COMPUTERS 375 | V360,2410,1,Q49. NOT USE VEHICLE-MOUNTED LAPTOP 376 | V361,2411,1,Q49. USED VEHICLE-MOUNTED COMPUTERS 377 | V362,2412,4,Q49. # VEHICLE-MOUNTED COMPUTERS 378 | V363,2416,1,Q49. NOT USE VEHICLE-MOUNTED COMPUTERS 379 | V364,2417,1,Q49. USED VEHICLE-MOUNTED TERMINALS 380 | V365,2418,4,Q49. # VEHICLE-MOUNTED TERMINALS 381 | V366,2422,1,Q49. NOT USE VEHICLE-MOUNTED TERMINALS 382 | V367,2423,1,Q49. USED OTHER VEHICLE-MOUNTED COMPUTERS 383 | V368,2424,180,Q49. OTHER TYPE OF VEHICLE-MOUNTED COMPUTER DESCRIPTION 384 | V369,2604,4,Q49. # OTHER VEHICLE-MOUNTED COMPUTERS 385 | V370,2608,1,Q49. NO OTHER VEHICLE-MOUNTED COMPUTERS 386 | V371,2609,1,Q49. USED PORTABLE LAPTOP COMPUTER 387 | V372,2610,4,Q49. # PORTABLE LAPTOP COMPUTERS 388 | V373,2614,1,Q49. NOT USE PORTABLE LAPTOP COMPUTERS 389 | V374,2615,1,Q49. USED PORTABLE MOBILE COMPUTERS 390 | V375,2616,4,Q49. # PORTABLE MOBILE COMPUTERS 391 | V376,2620,1,Q49. NOT USE PORTABLE MOBILE COMPUTERS 392 | V377,2621,1,Q49. USED PORTABLE MOBILE TERMINALS 393 | V378,2622,3,Q49. # PORTABLE MOBILE TERMINALS 394 | V379,2625,1,Q49. NOT USE PORTABLE MOBILE TERMINALS 395 | V380,2626,1,Q49. USED PORTABLE DIGITAL ASSISTANTS 396 | V381,2627,4,Q49. # PORTABLEDIGITAL ASSISTANTS 397 | V382,2631,1,Q49. NO PORTABLE DIGITAL ASSISTANTS 398 | V383,2632,1,Q49. USED OTHER PORTABLE COMPUTERS 399 | V384,2633,199,Q49. OTHER TYPE OF PORTABLE COMPUTER DESCRIPTION 400 | V385,2832,3,Q49. # OTHER PORTABLE COMPUTERS 401 | V386,2835,1,Q49. NOT USE OTH PORTABLE COMPUTERS 402 | V387,2836,1,Q50. MOTOR VEHICLE RECORDS 403 | V388,2837,1,Q50. DRIVING RECORDS 404 | V389,2838,1,Q50. CRIMINAL HISTORY RECORDS 405 | V390,2839,1,Q50. WARRANTS 406 | V391,2840,1,Q50. PROTECTION ORDERS 407 | V392,2841,1,Q50. INTER-AGENCY INFORMATION SYSTEM 408 | V393,2842,1,Q50. ADDRESS HISTORY 409 | V394,2843,1,Q51. HOW INCIDENT REPORTS TRANSMITTED 410 | V395,2844,1,Q52. EXCLUSIVE OWNER OF AFIS SYSTEM 411 | V396,2845,1,Q52. SHARED OWNER OF AFIS SYSTEM 412 | V397,2846,1,Q52. HAS ACCESS TO REMOTE AFIS SYSTEM 413 | V398,2847,1,Q52. ACCESS AFIS THROUGH ANOTHER AGENCY 414 | V399,2848,1,Q52. NONE OF THE ABOVE 415 | V400,2849,1,Q53. ANALYSIS OF COMMUNITY PROBLEMS 416 | V401,2850,1,Q53. AUTOMATED BOOKING 417 | V402,2851,1,Q53. CRIME ANALYSIS 418 | V403,2852,1,Q53. CRIMEMAPPING 419 | V404,2853,1,Q53. CRIME INVESTIGATIONS 420 | V405,2854,1,Q53. DISPATCH (CAD) 421 | V406,2855,1,Q53. FLEET MANAGEMENT 422 | V407,2856,1,Q53. HOTSPOT IDENTIFICATION 423 | V408,2857,1,Q53. IN-FIELD COMMUNICATIONS 424 | V409,2858,1,Q53. IN-FIELD REPORT WRITING 425 | V410,2859,1,Q53. INTELLIGENCE GATHERING 426 | V411,2860,1,Q53. INTER-AGENCY INFO SHARING 427 | V412,2861,1,Q53. INTERNET ACCESS 428 | V413,2862,1,Q53. PERSONNEL RECORDS 429 | V414,2863,1,Q53. RECORDS MANAGEMENT 430 | V415,2864,1,Q53. RESOURCE ALLOCATION 431 | V416,2865,1,Q53. TRAFFIC STOP DATA COLLECTION 432 | V417,2866,1,Q53. NONE OF THE ABOVE FUNCTIONS 433 | V418,2867,1,Q53. ALL OF THE ABOVE FUNCTIONS 434 | V419,2868,1,Q54. COMPUTERIZED FILES - ALARMS 435 | V420,2869,1,Q54. COMPUTERIZED FILES - ARRESTS 436 | V421,2870,1,Q54. COMPUTERIZED FILES - FACIAL RECOGNITION 437 | V422,2871,1,Q54. COMPUTERIZED FILES - SERVICE CALLS 438 | V423,2872,1,Q54. COMPUTERIZED FILES - CRIMINAL HISTORIES 439 | V424,2873,1,Q54. COMPUTERIZED FILES - FINGERPRINTS 440 | V425,2874,1,Q54. COMPUTERIZED FILES - INCIDENT REPORT 441 | V426,2875,1,Q54. COMPUTERIZED FILES - FIREARMS 442 | V427,2876,1,Q54. COMPUTERIZED FILES - TERRORISM 443 | V428,2877,1,Q54. COMPUTERIZED FILES - STOLEN PROPERTY 444 | V429,2878,1,Q54. COMPUTERIZED FILES - SUMMONSES 445 | V430,2879,1,Q54. COMPUTERIZED FILES - TRAFFIC ACCID 446 | V431,2880,1,Q54. COMPUTERIZED FILES - TRAFFIC CITATION 447 | V432,2881,1,Q54. COMPUTERIZED FILES - TRAFFIC STOPS 448 | V433,2882,1,Q54. COMPUTERIZED - USE-OF-FORCE INCIDENTS 449 | V434,2883,1,Q54. COMPUTERIZED FILES -WARRANTS 450 | V435,2884,1,Q54. COMPUTERIZED FILES - NONE ABOVE 451 | V436,2885,1,Q54. COMPUTERIZED FILES - ALL ABOVE 452 | V437,2886,1,Q55. COMPUTER-BASED PERFORMANCE MONITOR 453 | V438,2887,1,Q56. POLICY-USE OF DEADLY FORCE/FIREARM 454 | V439,2888,1,Q56. POLICY-USE OF LESS-THAN-LETHAL FORCE 455 | V440,2889,1,Q56. POICY-CODE OF CONDUCT/APPEARANCE 456 | V441,2890,1,Q56. POLICY-OFF-DUTY EMPLOYMENT 457 | V442,2891,1,Q56. POLICY-MAXIMUM WORK HOURS 458 | V443,2892,1,Q56. POLICY-DEALING W/ THE MENTALLY ILL 459 | V444,2893,1,Q56. POLICY-DEALING W/ THE HOMELESS 460 | V445,2894,1,Q56. POLICY- DEAL W/ DOMESTIC DISPUTES 461 | V446,2895,1,Q56. POLICY-DEALING W/ JUVENILES 462 | V447,2896,1,Q56. POLICY-STRIP SEARCHES 463 | V448,2897,1,Q56. POLICY-RACIAL PROFILING 464 | V449,2898,1,Q56. POLICY-CITIZEN COMPLAINTS 465 | V450,2899,1,Q56. POLICY-OFF-DUTY CONDUCT 466 | V451,2900,1,Q56. POLICY-INTERACTING WITH MEDIA 467 | V452,2901,1,Q56. POLICY-EMPLOYEE COUNSEL ASSISTANCE 468 | V453,2902,1,Q57. POLICY-PURSUIT DRIVING 469 | V454,2903,199,Q57. OTHER PURSUIT DRIVING POLICY DESCRIPTION 470 | V455,3102,4,Q58. TOTAL USE OF FORCE COMPLAINTS 471 | V456,3106,3,Q58. USE OF FORCE - UNFOUNDED 472 | V457,3109,3,Q58. USE OF FORCE - EXONERATED 473 | V458,3112,4,Q58. USE OF FORCE - NOT SUSTAINED 474 | V459,3116,3,Q58. USE OF FORCE - SUSTAINED 475 | V460,3119,3,Q58. USE OF FORCE - PENDING 476 | V461,3122,3,Q58. USE OF FORCE - OTH DISPOSITION 477 | V462,3125,1,Q59A. CIVILIAN COMPLAINT REVIEW BOARD 478 | V463,3126,1,Q59B. CIVILIAN REVIEW BOARD INDEPENDENT 479 | V464,3127,1,Q60. COMPLAINT INVESTIGATED OUTSIDE 480 | V465,3128,1,Q61. USE OF FORCE ACTION - AGENCY HEAD 481 | V466,3129,1,Q61. USE OF FORCE ACTION - OTHER SWORN 482 | V467,3130,1,Q61. USE OF FORCE ACTION - GOVT. EXECUTIVES 483 | V468,3131,1,Q61. USE OF FORCE ACTION - OTHER 484 | V469,3132,199,Q61. OTHER DESCRIPTION 485 | V470,3331,1,Q62. ADMINISTRATIVE APPEAL - CITIZENS 486 | V471,3332,1,Q62. ADMINISTRATIVE APPEAL -OFFICERS 487 | V1F,3333,1,V1 Flag 488 | V16F,3334,1,V16 Flag 489 | V17F,3335,1,V17 Flag 490 | V18F,3336,1,V18 Flag 491 | V24F,3337,1,V24 Flag 492 | V31F,3338,1,V31 Flag 493 | V38F,3339,1,V38 Flag 494 | V39F,3340,1,V39 Flag 495 | V40F,3341,1,V40 Flag 496 | V41F,3342,1,V41 Flag 497 | V42F,3343,1,V42 Flag 498 | V43F,3344,1,V43 Flag 499 | V44F,3345,1,V44 Flag 500 | V45F,3346,1,V45 Flag 501 | V46F,3347,1,V46 Flag 502 | V47F,3348,1,V47 Flag 503 | V48F,3349,1,V48 Flag 504 | V49F,3350,1,V49 Flag 505 | V50F,3351,1,V50 Flag 506 | V51F,3352,1,V51 Flag 507 | V52F,3353,1,V52 Flag 508 | V53F,3354,1,V53 Flag 509 | V54F,3355,1,V54 Flag 510 | V55F,3356,1,V55 Flag 511 | V56F,3357,1,V56 Flag 512 | V57F,3358,1,V57 Flag 513 | V58F,3359,1,V58 Flag 514 | V59F,3360,1,V59 Flag 515 | V60F,3361,1,V60 Flag 516 | V61F,3362,1,V61 Flag 517 | V62F,3363,1,V62 Flag 518 | V63F,3364,1,V63 Flag 519 | V64F,3365,1,V64 Flag 520 | V65F,3366,1,V65 Flag 521 | V66F,3367,1,V66 Flag 522 | V68F,3368,1,V68 Flag 523 | V89F,3369,1,V89 Flag 524 | V90F,3370,1,V90 Flag 525 | V91F,3371,1,V91 Flag 526 | V92F,3372,1,V92 Flag 527 | V93F,3373,1,V93 Flag 528 | V94F,3374,1,V94 Flag 529 | V95F,3375,1,V95 Flag 530 | V96F,3376,1,V96 Flag 531 | V97F,3377,1,V97 Flag 532 | V98F,3378,1,V98 Flag 533 | V99F,3379,1,V99 Flag 534 | V100F,3380,1,V100 Flag 535 | V102F,3381,1,V102 Flag 536 | V103F,3382,1,V103 Flag 537 | V104F,3383,1,V104 Flag 538 | V105F,3384,1,V105 Flag 539 | V106F,3385,1,V106 Flag 540 | V107F,3386,1,V107 Flag 541 | V108F,3387,1,V108 Flag 542 | V109F,3388,1,V109 Flag 543 | V110F,3389,1,V110 Flag 544 | V111F,3390,1,V111 Flag 545 | V112F,3391,1,V112 Flag 546 | V113F,3392,1,V113 Flag 547 | V114F,3393,1,V114 Flag 548 | V115F,3394,1,V115 Flag 549 | V116F,3395,1,V116 Flag 550 | V117F,3396,1,V117 Flag 551 | V118F,3397,1,V118 Flag 552 | V119F,3398,1,V119 Flag 553 | V120F,3399,1,V120 Flag 554 | V121F,3400,1,V121 Flag 555 | V122F,3401,1,V122 Flag 556 | V123F,3402,1,V123 Flag 557 | V124F,3403,1,V124 Flag 558 | V125F,3404,1,V125 Flag 559 | V126F,3405,1,V126 Flag 560 | V137F,3406,1,V137 Flag 561 | V138F,3407,1,V138 Flag 562 | V139F,3408,1,V139 Flag 563 | V140F,3409,1,V140 Flag 564 | V141F,3410,1,V141 Flag 565 | V142F,3411,1,V142 Flag 566 | V143F,3412,1,V143 Flag 567 | V144F,3413,1,V144 Flag 568 | V145F,3414,1,V145 Flag 569 | V146F,3415,1,V146 Flag 570 | V150F,3416,1,V150 Flag 571 | V151F,3417,1,V151 Flag 572 | V152F,3418,1,V152 Flag 573 | V153F,3419,1,V153 Flag 574 | V154F,3420,1,V154 Flag 575 | V155F,3421,1,V155 Flag 576 | V156F,3422,1,V156 Flag 577 | V157F,3423,1,V157 Flag 578 | V168F,3424,1,V168 Flag 579 | V169F,3425,1,V169 Flag 580 | V170F,3426,1,V170 Flag 581 | V171F,3427,1,V171 Flag 582 | V253F,3428,1,V253 Flag 583 | V254F,3429,1,V254 Flag 584 | V255F,3430,1,V255 Flag 585 | V256F,3431,1,V256 Flag 586 | V257F,3432,1,V257 Flag 587 | V258F,3433,1,V258 Flag 588 | V300F,3434,1,V300 Flag 589 | V301F,3435,1,V301 Flag 590 | V338F,3436,1,V338 Flag 591 | V339F,3437,1,V339 Flag 592 | V340F,3438,1,V340 Flag 593 | V341F,3439,1,V341 Flag 594 | V342F,3440,1,V342 Flag 595 | V343F,3441,1,V343 Flag 596 | V344F,3442,1,V344 Flag 597 | V345F,3443,1,V345 Flag 598 | V346F,3444,1,V346 Flag 599 | V354F,3445,1,V354 Flag 600 | V355F,3446,1,V355 Flag 601 | V356F,3447,1,V356 Flag 602 | V357F,3448,1,V357 Flag 603 | V359F,3449,1,V359 Flag 604 | V362F,3450,1,V362 Flag 605 | V365F,3451,1,V365 Flag 606 | V369F,3452,1,V369 Flag 607 | V372F,3453,1,V372 Flag 608 | V375F,3454,1,V375 Flag 609 | V378F,3455,1,V378 Flag 610 | V381F,3456,1,V381 Flag 611 | V385F,3457,1,V385 Flag 612 | V455F,3458,1,V455 Flag 613 | V456F,3459,1,V456 Flag 614 | V457F,3460,1,V457 Flag 615 | V458F,3461,1,V458 Flag 616 | V459F,3462,1,V459 Flag 617 | V460F,3463,1,V460 Flag 618 | V461F,3464,1,V461 Flag 619 | WEIGHT,3465,8,WEIGHT 620 | -------------------------------------------------------------------------------- /us/nasa/sunspots-schema.csv: -------------------------------------------------------------------------------- 1 | column,start,length,description 2 | year,0,4,Year 3 | month,5,2,Month 4 | ssn,8,5,Sun Spots Monthly Average 5 | dev,14,5,Sun Spots Standard Deviation 6 | -------------------------------------------------------------------------------- /us/noaa/ghcn_metadata_schema.csv: -------------------------------------------------------------------------------- 1 | column,start,length,description 2 | ID,0,11,"Station Identifier" 3 | LATITUDE,12,8,"Station Latitude" 4 | LONGITUDE,21,9,"Station Longitude" 5 | STNELEV,31,6,"Station Elevation [m]" 6 | NAME,38,30,"Station Name" 7 | GRELEV,69,4,"Station Elevation from DTM [m]" 8 | POPCLS,73,1,"Population Class" 9 | POPSIZ,74,5,"Population [thousands]" 10 | TOPO,79,2,"Topography" 11 | STVEG,81,2,"Station Vegetation" 12 | STLOC,83,2,"Station Near Lake or Ocean" 13 | OCNDIS,85,2,"Distance to Nearest Ocean or Lake [km]" 14 | AIRSTN,87,1,"Airport Station" 15 | TOWNDIS,88,2,"Distance to Center of Associated Town [km]" 16 | GRVEG,90,16,"Vegetation Type" 17 | POPCSS,106,1,"Population Class from Satellite" 18 | -------------------------------------------------------------------------------- /us/noaa/ghcn_schema.csv: -------------------------------------------------------------------------------- 1 | column,start,length,description 2 | ID,0,10,Station Identifier 3 | YEAR,11,4,Year 4 | ELEMENT,15,4,Element Type 5 | VALUE1,19,5,January Value 6 | DMFLAG1,24,1,Data Measurement Flag 7 | QCFLAG1,25,1,Quality Control Flag 8 | DSFLAG1,26,1,Data Source Flag 9 | VALUE2,27,5,January Value 10 | DMFLAG2,32,1,Data Measurement Flag 11 | QCFLAG2,33,1,Quality Control Flag 12 | DSFLAG2,34,1,Data Source Flag 13 | VALUE3,35,5,March Value 14 | DMFLAG3,40,1,Data Measurement Flag 15 | QCFLAG3,41,1,Quality Control Flag 16 | DSFLAG3,42,1,Data Source Flag 17 | VALUE4,43,5,April Value 18 | DMFLAG4,48,1,Data Measurement Flag 19 | QCFLAG4,49,1,Quality Control Flag 20 | DSFLAG4,50,1,Data Source Flag 21 | VALUE5,51,5,May Value 22 | DMFLAG5,56,1,Data Measurement Flag 23 | QCFLAG5,57,1,Quality Control Flag 24 | DSFLAG5,58,1,Data Source Flag 25 | VALUE6,59,5,June Value 26 | DMFLAG6,64,1,Data Measurement Flag 27 | QCFLAG6,65,1,Quality Control Flag 28 | DSFLAG6,66,1,Data Source Flag 29 | VALUE7,67,5,July Value 30 | DMFLAG7,72,1,Data Measurement Flag 31 | QCFLAG7,73,1,Quality Control Flag 32 | DSFLAG7,74,1,Data Source Flag 33 | VALUE8,75,5,August Value 34 | DMFLAG8,80,1,Data Measurement Flag 35 | QCFLAG8,81,1,Quality Control Flag 36 | DSFLAG8,82,1,Data Source Flag 37 | VALUE9,83,5,September Value 38 | DMFLAG9,88,1,Data Measurement Flag 39 | QCFLAG9,89,1,Quality Control Flag 40 | DSFLAG9,90,1,Data Source Flag 41 | VALUE10,91,5,October Value 42 | DMFLAG10,96,1,Data Measurement Flag 43 | QCFLAG10,97,1,Quality Control Flag 44 | DSFLAG10,98,1,Data Source Flag 45 | VALUE11,99,5,November Value 46 | DMFLAG11,104,1,Data Measurement Flag 47 | QCFLAG11,105,1,Quality Control Flag 48 | DSFLAG11,106,1,Data Source Flag 49 | VALUE12,107,5,December Value 50 | DMFLAG12,112,1,Data Measurement Flag 51 | QCFLAG12,113,1,Quality Control Flag 52 | DSFLAG12,114,1,Data Source Flag 53 | -------------------------------------------------------------------------------- /us/noaa/gsod_schema.csv: -------------------------------------------------------------------------------- 1 | column,start,length,description 2 | STN---,0,6,Station number (WMO/DATSAV3) 3 | WBAN,7,5,WBAN (historical) station number 4 | YEAR,14,4,Year 5 | MO,18,2,Month 6 | DA,20,2,Day 7 | TEMP,24,6,Mean temperature (F); missing = 9999.9 8 | Count (TEMP),31,2,Number of observations used to figure TEMP 9 | DEWP,35,6,Mean dew point (F); missing = 9999.9 10 | Count (DEWP),42,2,Number of observations used to figure DEWP 11 | SLP,46,6,Mean sea level pressure (mbar); missing = 9999.9 12 | Count (SLP),53,2,Number of observations used to figure SLP 13 | STP,57,6,Mean station pressure (mbar); missing = 9999.9 14 | Count (STP),64,2,Number of observations used to figure STP 15 | VISIB,68,5,Mean visibility (miles); missing = 999.9 16 | Count (VISIB),74,2,Number of observations used to figure VISIB 17 | WDSP,78,5,Mean wind speed (knots); missing = 999.9 18 | Count (WDSP),84,2,Number of observations used to figure WDSP 19 | MXSPD,88,5,Maximum sustained wind speed (knots); missing = 999.9 20 | GUST,95,5,Maximum wind gust (knots); missing = 999.9 21 | MAX,102,6,Maximum temperature (F); missing = 9999.9 22 | Flag (MAX),108,1,Blank means MAX is actual maximum temp; * means MAX is from hourly readings 23 | MIN,110,6,Minimum temperature (F); missing = 9999.9 24 | Flag (MIN),116,1,Blank means MIN is actual minimum temp; * means MIN is from hourly readings 25 | PRCP,118,5,"Total precipitation (rain/melted snow, inches); missing = 99.99" 26 | Flag (PRCP),123,1,Source of precipitation data--see ftp://ftp.ncdc.noaa.gov/pub/data/gsod/readme.txt for details 27 | SNDP,125,5,Snow depth (inches); missing = 999.9 28 | Fog,132,1,Fog occurred (boolean) 29 | Rain/Drizzle,133,1,Rain or drizzle occurred (boolean) 30 | Snow/Ice pellets,134,1,Snow or ice pellets occurred (boolean) 31 | Hail,135,1,Hail occurred (boolean) 32 | Thunder,136,1,Thunder occurred (boolean) 33 | Tornado/Funnel cloud,137,1,Tornado or funnel cloud occurred (boolean) 34 | -------------------------------------------------------------------------------- /us/ssa/death_master_file.csv: -------------------------------------------------------------------------------- 1 | column,start,description,length 2 | rectype,1,"01 BLANK OR A (ADD), C (CHANGE), OR D (DELETE)***",1 3 | ssn,2,02-10 SOCIAL SECURITY NUMBER,9 4 | last_name,11,11-30 LAST NAME,20 5 | suffix,31,31-34 NAME SUFFIX,4 6 | first_name,35,35-49 FIRST NAME,15 7 | middle_name,50,50-64 MIDDLE NAME,15 8 | vp_code,65,65 V or P CODE (VERIFIED OR PROOF CODE)****,1 9 | death_date,66,"66-73 DATE OF DEATH (MM,DD,CC,YY)",8 10 | birth_date,74,"74-81 DATE OF BIRTH (MM,DD,CC,YY)",8 11 | -------------------------------------------------------------------------------- /us/usno/maia_finals_schema.csv: -------------------------------------------------------------------------------- 1 | column,start,length 2 | year,0,2 3 | month_number,2,2 4 | day_of_month,4,2 5 | fractional_modified_julian_date,7,8 6 | iers_or_prediction_flag_for_bulletin_a_polar_motion_values,16,1 7 | bulletin_a_pm-x,18,9 8 | error_in_pm-x,27,9 9 | bulletin_a_pm-y,38,9 10 | error_in_pm-y,47,9 11 | iers_or_prediction_flag_for_bulletin_a_ut1-utc_values,57,1 12 | bulletin_a_ut1-utc,58,10 13 | error_in_ut1-utc,68,10 14 | bulletin_a_lod,79,7 15 | error_in_lod,86,7 16 | iers_or_prediction_flag_for_bulletin_a_nutation_values,95,1 17 | bulletin_a_dpsi,97,9 18 | error_in_dpsi,106,9 19 | bulletin_a_depsilon,116,9 20 | error_in_depsilon,125,9 21 | bulletin_b_pm-x,134,10 22 | bulletin_b_pm-y,144,10 23 | bulletin_b_ut1-utc,154,11 24 | bulletin_b_dpsi,165,10 25 | bulletin_b_depsilon,175,10 26 | --------------------------------------------------------------------------------