Federal Aid to States

The following charts contains information about the federal aid provided to the states. These tables include special links to update maps in the OmniGraffle application (macOS and iOS). TAP|CLICK for complete documentation regarding this example.

To use the interactive links, do the following:

omnigraffle:///omnijs-run?script=function%20importAllGraphicsFromNamedStencil%28stencilName%2CstencilURL%29%7B%0A%09if%20%28stencilURL%20%3D%3D%20null%29%7BstencilURL%20%3D%20%27https%3A%2F%2Fstenciltown%2Eomnigroup%2Ecom%27%7D%0A%09var%20installed%20%3D%20false%0A%09for%28i%20%3D%200%3B%20i%20%3C%20app%2Estencils%2Elength%3B%20i%2B%2B%29%20%7B%0A%09%09var%20stencil%20%3D%20app%2Estencils%5Bi%5D%3B%0A%09%09if%20%28stencil%2Ename%2ElocaleCompare%28stencilName%29%20%3D%3D%200%29%20%7B%0A%09%09%09cnvs%20%3D%20document%2Ewindows%5B0%5D%2Eselection%2Ecanvas%0A%09%09%09stencil%2Eload%28function%28s%29%20%7B%0A%09%09%09%09console%2Elog%28%22Loaded%20stencil%3A%20%E2%80%9C%22%20%2B%20s%2Ename%20%2B%20%22%E2%80%9D%22%29%0A%09%09%09%09cnvs%2Eduplicate%28s%2Egraphics%29%0A%09%09%09%7D%29%0A%09%09%09installed%20%3D%20true%0A%09%09%09break%0A%09%09%7D%0A%09%7D%0A%09if%20%28installed%20%3D%3D%20false%29%7B%0A%09%09var%20alert%20%3D%20new%20Alert%28%22MISSING%20STENCIL%22%2C%20%22The%20stencil%20%E2%80%9C%22%20%2B%20stencilName%20%2B%20%22%E2%80%9D%20is%20not%20installed%2E%5Cn%5CnDo%20you%20want%20to%20download%20it%20from%20StencilTown%3F%22%29%0A%09%09alert%2EaddOption%28%22Download%22%29%0A%09%09alert%2EaddOption%28%22Cancel%22%29%0A%09%09alert%2Eshow%28function%28result%29%7B%0A%09%09%09if%20%28result%20%3D%3D%200%29%7B%0A%09%09%09%09targetURL%20%3D%20URL%2EfromString%28stencilURL%29%0A%09%09%09%09targetURL%2Ecall%28function%28result%29%7B%7D%29%0A%09%09%09%7D%0A%09%09%7D%29%0A%09%7D%0A%7D%0AstencilURL%20%3D%20%27https%3A%2F%2Fstenciltown%2Eomnigroup%2Ecom%2Fstencils%2Fusa-map%2F%27%0AimportAllGraphicsFromNamedStencil%28%27USA%20Map%27%2C%20stencilURL%29
function importAllGraphicsFromNamedStencil(stencilName,stencilURL){ if (stencilURL == null){stencilURL = 'https://stenciltown.omnigroup.com'} var installed = false for(i = 0; i < app.stencils.length; i++) { var stencil = app.stencils[i]; if (stencil.name.localeCompare(stencilName) == 0) { cnvs = document.windows[0].selection.canvas stencil.load(function(s) { console.log("Loaded stencil: “" + s.name + "”") cnvs.duplicate(s.graphics) }) installed = true break } } if (installed == false){ var alert = new Alert("MISSING STENCIL", "The stencil “" + stencilName + "” is not installed.\n\nDo you want to download it from StencilTown?") alert.addOption("Download") alert.addOption("Cancel") alert.show(function(result){ if (result == 0){ targetURL = URL.fromString(stencilURL) targetURL.call(function(result){}) } }) } } stencilURL = 'https://stenciltown.omnigroup.com/stencils/usa-map/' importAllGraphicsFromNamedStencil('USA Map', stencilURL)
blob = 'XXXXX' jblob = JSON.parse(blob) jblob.forEach(function(item){ aValue = Number(item.data) if (aValue < 20){ aColorValue = Color.RGB(0,1,0,1) } else if (aValue < 23){ aColorValue = Color.RGB(0,0.9,0,1) } else if (aValue < 26){ aColorValue = Color.RGB(0,0.8,0,1) } else if (aValue < 29){ aColorValue = Color.RGB(0,0.7,0,1) } else if (aValue < 31){ aColorValue = Color.RGB(0,0.6,0,1) } else if (aValue < 34){ aColorValue = Color.RGB(0,0.5,0,1) } else if (aValue < 37){ aColorValue = Color.RGB(0,0.4,0,1) } else if (aValue < 40){ aColorValue = Color.RGB(0,0.3,0,1) } else { aColorValue = Color.RGB(0,0.2,0,1) } cnvs = document.windows[0].selection.canvas aGraphic = cnvs.graphicWithName(item.id) aGraphic.fillColor = aColorValue aGraphic.notes = item.state + ': ' + item.data })
blob%20%3D%20%27XXXXX%27%0Ajblob%20%3D%20JSON%2Eparse%28blob%29%0Ajblob%2EforEach%28function%28item%29%7B%0A%09aValue%20%3D%20Number%28item%2Edata%29%0A%09if%20%28aValue%20%3C%2020%29%7B%0A%09%09aColorValue%20%3D%20Color%2ERGB%280%2C1%2C0%2C1%29%0A%09%7D%20else%20if%20%28aValue%20%3C%2023%29%7B%0A%09%09aColorValue%20%3D%20Color%2ERGB%280%2C0%2E9%2C0%2C1%29%0A%09%7D%20else%20if%20%28aValue%20%3C%2026%29%7B%0A%09%09aColorValue%20%3D%20Color%2ERGB%280%2C0%2E8%2C0%2C1%29%0A%09%7D%20else%20if%20%28aValue%20%3C%2029%29%7B%0A%09%09aColorValue%20%3D%20Color%2ERGB%280%2C0%2E7%2C0%2C1%29%20%09%20%20%0A%09%7D%20else%20if%20%28aValue%20%3C%2031%29%7B%0A%09%09aColorValue%20%3D%20Color%2ERGB%280%2C0%2E6%2C0%2C1%29%0A%09%7D%20else%20if%20%28aValue%20%3C%2034%29%7B%0A%09%09aColorValue%20%3D%20Color%2ERGB%280%2C0%2E5%2C0%2C1%29%0A%09%7D%20else%20if%20%28aValue%20%3C%2037%29%7B%0A%09%09aColorValue%20%3D%20Color%2ERGB%280%2C0%2E4%2C0%2C1%29%0A%09%7D%20else%20if%20%28aValue%20%3C%2040%29%7B%0A%09%09aColorValue%20%3D%20Color%2ERGB%280%2C0%2E3%2C0%2C1%29%09%0A%09%7D%20else%20%7B%0A%09%09aColorValue%20%3D%20Color%2ERGB%280%2C0%2E2%2C0%2C1%29%0A%09%7D%0A%09aGraphic%20%3D%20document%2Ewindows%5B0%5D%2Eselection%2Ecanvas%2EgraphicWithName%28item%2Eid%29%0A%09aGraphic%2EfillColor%20%3D%20aColorValue%0A%09aGraphic%2Enotes%20%3D%20item%2Estate%20%2B%20%27%3A%20%27%20%2B%20item%2Edata%0A%7D%29
2000 • Federal Aid as Percentage of State RevenueOmniGraffle-iOS-1024
Alabama33.6
Alaska16.3
Arizona26.9
Arkansas29.7
California24.8
Colorado25.4
Connecticut20.9
Delware18.2
Florida23.8
Georgia27.4
Hawaii19.6
Idaho25.5
Illinois23.9
Indiana25.4
Iowa26.6
Kansas27.6
Kentucky29.5
Louisiana31.8
Maine29.3
Maryland22.4
Massachusetts19.8
Michigan23.2
Minnesota20.9
Mississippi34.8
Missouri31.6
Montana33.9
Nebraska27.0
Nevada18.2
New Hampshire25.7
New Jersey22.7
New Mexico27.0
New York30.9
North Carolina29.0
North Dakota34.8
Ohio27.2
Oklahoma27.5
Oregon32.8
Pennsylvania25.2
Rhode Island26.6
South Carolina30.4
South Dakota34.2
Tennessee37.5
Texas29.9
Utah24.4
Vermont29.8
Virginia19.0
Washington24.0
West Virginia33.6
Wisconsin21.9
Wyoming35.8
*Pew Charitable Trusts
 
blob%20%3D%20%27XXXXX%27%0Ajblob%20%3D%20JSON%2Eparse%28blob%29%0Ajblob%2EforEach%28function%28item%29%7B%0A%09aValue%20%3D%20Number%28item%2Edata%29%0A%09if%20%28aValue%20%3C%2020%29%7B%0A%09%09aColorValue%20%3D%20Color%2ERGB%280%2C1%2C0%2C1%29%0A%09%7D%20else%20if%20%28aValue%20%3C%2023%29%7B%0A%09%09aColorValue%20%3D%20Color%2ERGB%280%2C0%2E9%2C0%2C1%29%0A%09%7D%20else%20if%20%28aValue%20%3C%2026%29%7B%0A%09%09aColorValue%20%3D%20Color%2ERGB%280%2C0%2E8%2C0%2C1%29%0A%09%7D%20else%20if%20%28aValue%20%3C%2029%29%7B%0A%09%09aColorValue%20%3D%20Color%2ERGB%280%2C0%2E7%2C0%2C1%29%20%09%20%20%0A%09%7D%20else%20if%20%28aValue%20%3C%2031%29%7B%0A%09%09aColorValue%20%3D%20Color%2ERGB%280%2C0%2E6%2C0%2C1%29%0A%09%7D%20else%20if%20%28aValue%20%3C%2034%29%7B%0A%09%09aColorValue%20%3D%20Color%2ERGB%280%2C0%2E5%2C0%2C1%29%0A%09%7D%20else%20if%20%28aValue%20%3C%2037%29%7B%0A%09%09aColorValue%20%3D%20Color%2ERGB%280%2C0%2E4%2C0%2C1%29%0A%09%7D%20else%20if%20%28aValue%20%3C%2040%29%7B%0A%09%09aColorValue%20%3D%20Color%2ERGB%280%2C0%2E3%2C0%2C1%29%09%0A%09%7D%20else%20%7B%0A%09%09aColorValue%20%3D%20Color%2ERGB%280%2C0%2E2%2C0%2C1%29%0A%09%7D%0A%09aGraphic%20%3D%20document%2Ewindows%5B0%5D%2Eselection%2Ecanvas%2EgraphicWithName%28item%2Eid%29%0A%09aGraphic%2EfillColor%20%3D%20aColorValue%0A%09aGraphic%2Enotes%20%3D%20item%2Estate%20%2B%20%27%3A%20%27%20%2B%20item%2Edata%0A%7D%29
2013 • Federal Aid as Percentage of State RevenueOmniGraffle-iOS-1024
Alabama34.9
Alaska26.9
Arizona35.9
Arkansas33.5
California26.0
Colorado29.1
Connecticut24.6
Delware26.7
Florida33.2
Georgia36.7
Hawaii24.8
Idaho33.8
Illinois26.8
Indiana33.0
Iowa32.6
Kansas25.5
Kentucky38.5
Louisiana40.1
Maine36.6
Maryland29.4
Massachusetts27.8
Michigan32.3
Minnesota25.5
Mississippi40.9
Missouri38.0
Montana39.1
Nebraska31.0
Nevada24.8
New Hampshire28.1
New Jersey27.3
New Mexico34.5
New York32.8
North Carolina32.7
North Dakota16.8
Ohio35.0
Oklahoma34.0
Oregon36.0
Pennsylvania30.8
Rhode Island34.7
South Carolina30.7
South Dakota37.2
Tennessee39.9
Texas31.8
Utah28.1
Vermont33.6
Virginia22.8
Washington29.2
West Virginia34.8
Wisconsin27.8
Wyoming35.5
*Tax Foundation