Wikipedia:WikiProject National Register of Historic Places/Progress/History
This page is devoted to tracking the progress of WikiProject NRHP over time. Using the information from the Progress page itself, animated gifs of coverage have been generated and included herein. Data collected from the Progress page can also be used to produce graphs of historical progress of NRHP coverage. The data is gathered by a script, which you can install on your personal javascript if you wish to access the raw data directly. It can then be fed into a plotting program (e.g. gnuplot) to produce the graphs seen below. Minimal knowledge of gnuplot syntax is needed to produce these graphs, and obviously the installation itself is required. The gnuplot documentation is a good source to learn the syntax, although most of it will be unnecessary for the purposes of making these graphs, and gnuplot itself can be downloaded here.
Animated maps of WP:NRHP Progress
editThese show updates during 2013 to 2016.
How to produce your own line graphs
editThe raw data can be turned into a variety of different graphs which include a plethora of information. To produce a graph, copy the raw data into a file of your choosing (in Windows/Mac/Linux, simply pasting the data into a blank text file in Notepad/TextEdit/gedit and saving it will suffice) and choose which columns to graph based on the numbered columns in the data. You will also need to create a separate text file to run in gnuplot. The base template for these graphs is shown below with helpful comments to describe the function of each line and how it can be customized
set term svg size 1000,800 fname 'Verdana' fsize 12 # SVG with dimensions 1000x800 and 12pt Verdana font set output '_MYTITLE_.svg' # Desired title of graph file set xdata time # This line and the next tell gnuplot set timefmt "%Y%m%d" # we are plotting a graph over time currentDate=strftime("%Y%m%d",time(0)) # get current date set xtics "20130401",2*2592000,currentDate rotate # Start at beginning of Progress page history and increment in two-month steps until current date set yrange [_MIN_:_MAX_] # Set the min and max of the y-axis (e.g. for percent graphs, [0:100]) set title "_DISPLAYTITLE_" # Title to be shown on the graph set key below # Set location of key; see gnuplot documentation for more placement options set multiplot plot \ # Include a list of lines to display on graph below "_DATAFILE_.d" using 1:_COLUMN_ title "_KEYLABEL_" _GNUPLOTOPTIONS_, \ . . . "_DATAFILE_.d" using 1:_COLUMN_ title "_KEYLABEL_" _GNUPLOTOPTIONS
The all caps keywords offset by underscores ("_") should be replaced with the relevant information, and multiple lines can be drawn on the same graph by adding extra lines where the vertical dots are. See the examples below for fully filled examples of this template.
Example graphs
editNational totals
editThe following code produces an svg file named "MyTitle.svg" which includes the graph shown to the right. The raw data has been stored in the file "ProgressHistory.d"
set term svg size 1000,800 fname 'Verdana' fsize 12 set output 'MyTitle.svg' set xdata time set timefmt "%Y%m%d" currentDate=strftime("%Y%m%d",time(0)) set xtics "20130401",2*2592000,currentDate rotate set yrange [0:95000] set title "WP:NRHPPROGRESS Over Time" set key below set multiplot plot \ "ProgressHistory.d" using 1:2 title "Total" w lp lw 2, \ "ProgressHistory.d" using 1:3 title "Illustrated" w lp lw 2, \ "ProgressHistory.d" using 1:5 title "Articled" w lp lw 2, \ "ProgressHistory.d" using 1:7 title "Stubs" w lp lw 2, \ "ProgressHistory.d" using 1:8 title "NRIS-only" w lp lw 2, \ "ProgressHistory.d" using 1:9 title "Start+" w lp lw 2, \ "ProgressHistory.d" using 1:11 title "Unassessed" w lp lw 2, \ "ProgressHistory.d" using 1:12 title "Untagged" w lp lw 2
National percent
editThe following code produces an svg file named "MyOtherTitle.svg" which includes the graph shown to the right. The raw data has been stored in the file "Total.d"
set term svg size 1000,800 fname 'Verdana' fsize 12 set output 'MyOtherTitle.svg' set xdata time set timefmt "%Y%m%d" currentDate=strftime("%Y%m%d",time(0)) set xtics "20130401",2*2592000,currentDate rotate set yrange [0:100] set format y "%.0f%%" # to make y-axis show "%" set title "WP:NRHPPROGRESS Over Time – Percent" set key below set multiplot plot \ "Total.d" using 1:4 title "%Illustrated" w lp lw 2, \ "Total.d" using 1:6 title "%Articled" w lp lw 2, \ "Total.d" using 1:10 title "%Start+" w lp lw 2, \ "Total.d" using 1:13 title "Net_Quality" w lp lw 2
Individual state progress
editThe following code produces an svg file named "Virginia.svg" which includes the graph shown to the right. The raw data has been stored in the file "Total.d"
set term svg size 1000,800 fname 'Verdana' fsize 12 set output 'Virginia.svg' set xdata time set timefmt "%Y%m%d" currentDate=strftime("%Y%m%d",time(0)) set xtics "20130401",2*2592000,currentDate rotate set yrange [0:100] set format y "%.0f%%" # to make y-axis show "%" set title "WP:NRHPPROGRESS Over Time – Virginia" set key below set multiplot plot \ "Total.d" using 1:568 title "%Illustrated" w lp lw 2, \ "Total.d" using 1:570 title "%Articled" w lp lw 2, \ "Total.d" using 1:574 title "%Start+" w lp lw 2, \ "Total.d" using 1:577 title "Net_Quality" w lp lw 2
FA, GA progress
editThe following code produces an svg file named "FAGAOverTimeTotal.svg" using the second box in the script output. The raw data has been stored in the file "FAGA.d"
set term svg size 1000,800 fname 'Verdana' fsize 12 set output 'Graphs/FAGAOverTimeTotal.svg' set xdata time set timefmt "%Y%m%d" currentDate=strftime("%Y%m%d",time(0)) set xtics "20110801",3*2592000,currentDate rotate set yrange [0:250] set title "WP:NRHPPROGRESS Over Time - FA, GA Totals" set key below set multiplot plot \ "FAGA.d" using 1:2 title "FAs" w lp lw 2, \ "FAGA.d" using 3:4 title "GAs" w lp lw 2
More complicated graphs
editThe data on the progress page only shows a total number of articles/images in each category for every update, but that does not mean the data extracted by the script is only limited to displaying these totals. If desired, these totals can be combined to make to make "effective" columns. The following code produces an svg file named "Massachusetts.svg" which includes the graph shown to the right. The raw data has been stored in the file "Total.d". The code calculates a ratio between the number of NRIS-only articles in MA and the total number to determine the percent of the sites in the state that have articles which are NRIS-only quality—something not directly shown on the Progress page—and plots this effective column along with the other standard ones.
set term svg size 1000,800 fname 'Verdana' fsize 12 set output 'Massachusetts.svg' set xdata time set timefmt "%Y%m%d" currentDate=strftime("%Y%m%d",time(0)) set xtics "20130401",2*2592000,currentDate rotate set yrange [0:100] set format y "%.0f%%" # to make y-axis show "%" set title "WP:NRHPPROGRESS Over Time – Massachusetts" set key below set multiplot plot \ "Total.d" using 1:268 title "%Illustrated" w lp lw 2, \ "Total.d" using 1:270 title "%Articled" w lp lw 2, \ "Total.d" using 1:274 title "%Start+" w lp lw 2, \ "Total.d" using 1:277 title "Net_Quality" w lp lw 2, \ "Total.d" using 1:($272/$266*100) title "%NRIS-only" w lp lw 2
The following code goes one step further and uses a somewhat complicated numerical differentiation scheme to find the rate of national article creation, not just the total number for each date. Because the data is pretty noisy (updates are not at regular intervals), the code also produces a "smooth approximation" of the noisy data, which is a bit easier to read. The raw data is stored in the file "Total.d", and the graph is produced in the file "RateArticled.svg".
set term svg size 1000,800 fname 'Verdana' fsize 12 set output 'RateArticled.svg' set xdata time set timefmt "%Y%m%d" currentDate=strftime("%Y%m%d",time(0)) set xtics "20130401",2*2592000,currentDate rotate set yrange [0:30] set title "WP:NRHPPROGRESS Over Time – Rate of article creation" set ylabel "Articles/day" set key below x0=NaN y0=NaN yprev=NaN set multiplot plot \ 'Total.d' using 1:(dx=strptime("%Y%m%d",stringcolumn(1))-x0,x0=strptime("%Y%m%d",stringcolumn(1)),dy=$5-y0,y0=$5,yprev=(dx==0?yprev:dy/dx*86400),dx==0?yprev:dy/dx*86400) title "Actual" w lp lw 1 lc 2, \ 'Total.d' using 1:(dx=strptime("%Y%m%d",stringcolumn(1))-x0,x0=strptime("%Y%m%d",stringcolumn(1)),dy=$5-y0,y0=$5,yprev=(dx==0?yprev:dy/dx*86400),dx==0?yprev:dy/dx*86400) title "Smooth approximation" w lp lw 2 lc 1 smooth bezier
The same numerical differentiation scheme is used below to show the rate at which images have been uploaded. The graph is produced in the file "RateIllustrated.svg".
set term svg size 1000,800 fname 'Verdana' fsize 12 set output 'Graphs/RateIllustrated.svg' set xdata time set timefmt "%Y%m%d" set title "WP:NRHPPROGRESS Over Time – Rate of image uploads" currentDate=strftime("%Y%m%d",time(0)) set xtics "20130401",2*2592000,currentDate rotate set yrange [0:60] set ylabel "Images/day" set key below x0=NaN y0=NaN yprev=NaN set multiplot plot \ 'Total.d' using 1:(dx=strptime("%Y%m%d",stringcolumn(1))-x0,x0=strptime("%Y%m%d",stringcolumn(1)),dy=$3-y0,y0=$3,yprev=(dx==0?yprev:dy/dx*86400),dx==0?yprev:dy/dx*86400) title "Actual" w lp lw 1 lc 2, \ 'Total.d' using 1:(dx=strptime("%Y%m%d",stringcolumn(1))-x0,x0=strptime("%Y%m%d",stringcolumn(1)),dy=$3-y0,y0=$3,yprev=(dx==0?yprev:dy/dx*86400),dx==0?yprev:dy/dx*86400) title "Smooth approximation" w lp lw 2 lc 1 smooth bezier
These same routines could be applied to individual states by changing the column numbers to the relevant ones shown below. Gnuplot is a very powerful graphing and data analysis tool, and these examples are just the tip of the iceberg. Looking through the gnuplot documentation will allow the reader access to the many more advanced features of the software and provide a much more thorough glimpse into the activity of WP:NRHP than can be caught by looking at the Progress page at any one time!
Quick reference for column numbers
editThere are 12 different pieces of information for each state:
- Total
- Illustrated
- %Illustrated
- Articled
- %Articled
- Stubs
- NRIS-only
- Start+
- %Start+
- Unassessed
- Untagged
- Net_Quality
Column 1 in the data file is the revision date, common to all entries on that row, and the columns 2-13 are taken up by the national statistics. The states' columns are then included in alphabetical order starting with Alabama in columns 14-25. Washington, D.C. ("District of Columbia") is included just after Delaware, and territories such as Puerto Rico, Guam, etc. are included after all the states at the end of the row. The full list of states in alphabetical order is shown below for reference.
- Alabama (AL)
- Alaska (AK)
- Arizona (AZ)
- Arkansas (AR)
- California (CA)
- Colorado (CO)
- Connecticut (CT)
- Delaware (DE)
- District of Columbia (DC)
- Florida (FL)
- Georgia (GA)
- Hawaii (HI)
- Idaho (ID)
- Illinois (IL)
- Indiana (IN)
- Iowa (IA)
- Kansas (KS)
- Kentucky (KY)
- Louisiana (LA)
- Maine (ME)
- Maryland (MD)
- Massachusetts (MA)
- Michigan (MI)
- Minnesota (MN)
- Mississippi (MS)
- Missouri (MO)
- Montana (MT)
- Nebraska (NE)
- Nevada (NV)
- New Hampshire (NH)
- New Jersey (NJ)
- New Mexico (NM)
- New York (NY)
- North Carolina (NC)
- North Dakota (ND)
- Ohio (OH)
- Oklahoma (OK)
- Oregon (OR)
- Pennsylvania (PA)
- Rhode Island (RI)
- South Carolina (SC)
- South Dakota (SD)
- Tennessee (TN)
- Texas (TX)
- Utah (UT)
- Vermont (VT)
- Virginia (VA)
- Washington (WA)
- West Virginia (WV)
- Wisconsin (WI)
- Wyoming (WY)
- Puerto Rico (PR)
- Guam (GU)
- Virgin Islands (VI)
- Northern Mariana Islands (MP)
- American Samoa (AS)
- Federated States of Micronesia (FM)
- Palau (PW)
- Marshall Islands (MH)
- Minor Outlying Islands (UM)
A quick formula to calculate the column number of a certain column, C
, inside a state is is C=1+12*n+m
where n
is the state's position in alphabetical order and m
is the bit of information you want to get (e.g. 1=Total, etc. from the list above). Thus the %Illustrated column (m=3
) in Colorado (n=6
) is column C=1+12*6+3=76
. A total reference list of all columns is shown below.
- Date
- Total
- Illustrated
- %Illustrated
- Articled
- %Articled
- Stubs
- NRIS-only
- Start+
- %Start+
- Unassessed
- Untagged
- Net_Quality
- AL_Total
- AL_Illustrated
- AL_%Illustrated
- AL_Articled
- AL_%Articled
- AL_Stubs
- AL_NRIS-only
- AL_Start+
- AL_%Start+
- AL_Unassessed
- AL_Untagged
- AL_Net_Quality
- AK_Total
- AK_Illustrated
- AK_%Illustrated
- AK_Articled
- AK_%Articled
- AK_Stubs
- AK_NRIS-only
- AK_Start+
- AK_%Start+
- AK_Unassessed
- AK_Untagged
- AK_Net_Quality
- AZ_Total
- AZ_Illustrated
- AZ_%Illustrated
- AZ_Articled
- AZ_%Articled
- AZ_Stubs
- AZ_NRIS-only
- AZ_Start+
- AZ_%Start+
- AZ_Unassessed
- AZ_Untagged
- AZ_Net_Quality
- AR_Total
- AR_Illustrated
- AR_%Illustrated
- AR_Articled
- AR_%Articled
- AR_Stubs
- AR_NRIS-only
- AR_Start+
- AR_%Start+
- AR_Unassessed
- AR_Untagged
- AR_Net_Quality
- CA_Total
- CA_Illustrated
- CA_%Illustrated
- CA_Articled
- CA_%Articled
- CA_Stubs
- CA_NRIS-only
- CA_Start+
- CA_%Start+
- CA_Unassessed
- CA_Untagged
- CA_Net_Quality
- CO_Total
- CO_Illustrated
- CO_%Illustrated
- CO_Articled
- CO_%Articled
- CO_Stubs
- CO_NRIS-only
- CO_Start+
- CO_%Start+
- CO_Unassessed
- CO_Untagged
- CO_Net_Quality
- CT_Total
- CT_Illustrated
- CT_%Illustrated
- CT_Articled
- CT_%Articled
- CT_Stubs
- CT_NRIS-only
- CT_Start+
- CT_%Start+
- CT_Unassessed
- CT_Untagged
- CT_Net_Quality
- DE_Total
- DE_Illustrated
- DE_%Illustrated
- DE_Articled
- DE_%Articled
- DE_Stubs
- DE_NRIS-only
- DE_Start+
- DE_%Start+
- DE_Unassessed
- DE_Untagged
- DE_Net_Quality
- DC_Total
- DC_Illustrated
- DC_%Illustrated
- DC_Articled
- DC_%Articled
- DC_Stubs
- DC_NRIS-only
- DC_Start+
- DC_%Start+
- DC_Unassessed
- DC_Untagged
- DC_Net_Quality
- FL_Total
- FL_Illustrated
- FL_%Illustrated
- FL_Articled
- FL_%Articled
- FL_Stubs
- FL_NRIS-only
- FL_Start+
- FL_%Start+
- FL_Unassessed
- FL_Untagged
- FL_Net_Quality
- GA_Total
- GA_Illustrated
- GA_%Illustrated
- GA_Articled
- GA_%Articled
- GA_Stubs
- GA_NRIS-only
- GA_Start+
- GA_%Start+
- GA_Unassessed
- GA_Untagged
- GA_Net_Quality
- HI_Total
- HI_Illustrated
- HI_%Illustrated
- HI_Articled
- HI_%Articled
- HI_Stubs
- HI_NRIS-only
- HI_Start+
- HI_%Start+
- HI_Unassessed
- HI_Untagged
- HI_Net_Quality
- ID_Total
- ID_Illustrated
- ID_%Illustrated
- ID_Articled
- ID_%Articled
- ID_Stubs
- ID_NRIS-only
- ID_Start+
- ID_%Start+
- ID_Unassessed
- ID_Untagged
- ID_Net_Quality
- IL_Total
- IL_Illustrated
- IL_%Illustrated
- IL_Articled
- IL_%Articled
- IL_Stubs
- IL_NRIS-only
- IL_Start+
- IL_%Start+
- IL_Unassessed
- IL_Untagged
- IL_Net_Quality
- IN_Total
- IN_Illustrated
- IN_%Illustrated
- IN_Articled
- IN_%Articled
- IN_Stubs
- IN_NRIS-only
- IN_Start+
- IN_%Start+
- IN_Unassessed
- IN_Untagged
- IN_Net_Quality
- IA_Total
- IA_Illustrated
- IA_%Illustrated
- IA_Articled
- IA_%Articled
- IA_Stubs
- IA_NRIS-only
- IA_Start+
- IA_%Start+
- IA_Unassessed
- IA_Untagged
- IA_Net_Quality
- KS_Total
- KS_Illustrated
- KS_%Illustrated
- KS_Articled
- KS_%Articled
- KS_Stubs
- KS_NRIS-only
- KS_Start+
- KS_%Start+
- KS_Unassessed
- KS_Untagged
- KS_Net_Quality
- KY_Total
- KY_Illustrated
- KY_%Illustrated
- KY_Articled
- KY_%Articled
- KY_Stubs
- KY_NRIS-only
- KY_Start+
- KY_%Start+
- KY_Unassessed
- KY_Untagged
- KY_Net_Quality
- LA_Total
- LA_Illustrated
- LA_%Illustrated
- LA_Articled
- LA_%Articled
- LA_Stubs
- LA_NRIS-only
- LA_Start+
- LA_%Start+
- LA_Unassessed
- LA_Untagged
- LA_Net_Quality
- ME_Total
- ME_Illustrated
- ME_%Illustrated
- ME_Articled
- ME_%Articled
- ME_Stubs
- ME_NRIS-only
- ME_Start+
- ME_%Start+
- ME_Unassessed
- ME_Untagged
- ME_Net_Quality
- MD_Total
- MD_Illustrated
- MD_%Illustrated
- MD_Articled
- MD_%Articled
- MD_Stubs
- MD_NRIS-only
- MD_Start+
- MD_%Start+
- MD_Unassessed
- MD_Untagged
- MD_Net_Quality
- MA_Total
- MA_Illustrated
- MA_%Illustrated
- MA_Articled
- MA_%Articled
- MA_Stubs
- MA_NRIS-only
- MA_Start+
- MA_%Start+
- MA_Unassessed
- MA_Untagged
- MA_Net_Quality
- MI_Total
- MI_Illustrated
- MI_%Illustrated
- MI_Articled
- MI_%Articled
- MI_Stubs
- MI_NRIS-only
- MI_Start+
- MI_%Start+
- MI_Unassessed
- MI_Untagged
- MI_Net_Quality
- MN_Total
- MN_Illustrated
- MN_%Illustrated
- MN_Articled
- MN_%Articled
- MN_Stubs
- MN_NRIS-only
- MN_Start+
- MN_%Start+
- MN_Unassessed
- MN_Untagged
- MN_Net_Quality
- MS_Total
- MS_Illustrated
- MS_%Illustrated
- MS_Articled
- MS_%Articled
- MS_Stubs
- MS_NRIS-only
- MS_Start+
- MS_%Start+
- MS_Unassessed
- MS_Untagged
- MS_Net_Quality
- MO_Total
- MO_Illustrated
- MO_%Illustrated
- MO_Articled
- MO_%Articled
- MO_Stubs
- MO_NRIS-only
- MO_Start+
- MO_%Start+
- MO_Unassessed
- MO_Untagged
- MO_Net_Quality
- MT_Total
- MT_Illustrated
- MT_%Illustrated
- MT_Articled
- MT_%Articled
- MT_Stubs
- MT_NRIS-only
- MT_Start+
- MT_%Start+
- MT_Unassessed
- MT_Untagged
- MT_Net_Quality
- NE_Total
- NE_Illustrated
- NE_%Illustrated
- NE_Articled
- NE_%Articled
- NE_Stubs
- NE_NRIS-only
- NE_Start+
- NE_%Start+
- NE_Unassessed
- NE_Untagged
- NE_Net_Quality
- NV_Total
- NV_Illustrated
- NV_%Illustrated
- NV_Articled
- NV_%Articled
- NV_Stubs
- NV_NRIS-only
- NV_Start+
- NV_%Start+
- NV_Unassessed
- NV_Untagged
- NV_Net_Quality
- NH_Total
- NH_Illustrated
- NH_%Illustrated
- NH_Articled
- NH_%Articled
- NH_Stubs
- NH_NRIS-only
- NH_Start+
- NH_%Start+
- NH_Unassessed
- NH_Untagged
- NH_Net_Quality
- NJ_Total
- NJ_Illustrated
- NJ_%Illustrated
- NJ_Articled
- NJ_%Articled
- NJ_Stubs
- NJ_NRIS-only
- NJ_Start+
- NJ_%Start+
- NJ_Unassessed
- NJ_Untagged
- NJ_Net_Quality
- NM_Total
- NM_Illustrated
- NM_%Illustrated
- NM_Articled
- NM_%Articled
- NM_Stubs
- NM_NRIS-only
- NM_Start+
- NM_%Start+
- NM_Unassessed
- NM_Untagged
- NM_Net_Quality
- NY_Total
- NY_Illustrated
- NY_%Illustrated
- NY_Articled
- NY_%Articled
- NY_Stubs
- NY_NRIS-only
- NY_Start+
- NY_%Start+
- NY_Unassessed
- NY_Untagged
- NY_Net_Quality
- NC_Total
- NC_Illustrated
- NC_%Illustrated
- NC_Articled
- NC_%Articled
- NC_Stubs
- NC_NRIS-only
- NC_Start+
- NC_%Start+
- NC_Unassessed
- NC_Untagged
- NC_Net_Quality
- ND_Total
- ND_Illustrated
- ND_%Illustrated
- ND_Articled
- ND_%Articled
- ND_Stubs
- ND_NRIS-only
- ND_Start+
- ND_%Start+
- ND_Unassessed
- ND_Untagged
- ND_Net_Quality
- OH_Total
- OH_Illustrated
- OH_%Illustrated
- OH_Articled
- OH_%Articled
- OH_Stubs
- OH_NRIS-only
- OH_Start+
- OH_%Start+
- OH_Unassessed
- OH_Untagged
- OH_Net_Quality
- OK_Total
- OK_Illustrated
- OK_%Illustrated
- OK_Articled
- OK_%Articled
- OK_Stubs
- OK_NRIS-only
- OK_Start+
- OK_%Start+
- OK_Unassessed
- OK_Untagged
- OK_Net_Quality
- OR_Total
- OR_Illustrated
- OR_%Illustrated
- OR_Articled
- OR_%Articled
- OR_Stubs
- OR_NRIS-only
- OR_Start+
- OR_%Start+
- OR_Unassessed
- OR_Untagged
- OR_Net_Quality
- PA_Total
- PA_Illustrated
- PA_%Illustrated
- PA_Articled
- PA_%Articled
- PA_Stubs
- PA_NRIS-only
- PA_Start+
- PA_%Start+
- PA_Unassessed
- PA_Untagged
- PA_Net_Quality
- RI_Total
- RI_Illustrated
- RI_%Illustrated
- RI_Articled
- RI_%Articled
- RI_Stubs
- RI_NRIS-only
- RI_Start+
- RI_%Start+
- RI_Unassessed
- RI_Untagged
- RI_Net_Quality
- SC_Total
- SC_Illustrated
- SC_%Illustrated
- SC_Articled
- SC_%Articled
- SC_Stubs
- SC_NRIS-only
- SC_Start+
- SC_%Start+
- SC_Unassessed
- SC_Untagged
- SC_Net_Quality
- SD_Total
- SD_Illustrated
- SD_%Illustrated
- SD_Articled
- SD_%Articled
- SD_Stubs
- SD_NRIS-only
- SD_Start+
- SD_%Start+
- SD_Unassessed
- SD_Untagged
- SD_Net_Quality
- TN_Total
- TN_Illustrated
- TN_%Illustrated
- TN_Articled
- TN_%Articled
- TN_Stubs
- TN_NRIS-only
- TN_Start+
- TN_%Start+
- TN_Unassessed
- TN_Untagged
- TN_Net_Quality
- TX_Total
- TX_Illustrated
- TX_%Illustrated
- TX_Articled
- TX_%Articled
- TX_Stubs
- TX_NRIS-only
- TX_Start+
- TX_%Start+
- TX_Unassessed
- TX_Untagged
- TX_Net_Quality
- UT_Total
- UT_Illustrated
- UT_%Illustrated
- UT_Articled
- UT_%Articled
- UT_Stubs
- UT_NRIS-only
- UT_Start+
- UT_%Start+
- UT_Unassessed
- UT_Untagged
- UT_Net_Quality
- VT_Total
- VT_Illustrated
- VT_%Illustrated
- VT_Articled
- VT_%Articled
- VT_Stubs
- VT_NRIS-only
- VT_Start+
- VT_%Start+
- VT_Unassessed
- VT_Untagged
- VT_Net_Quality
- VA_Total
- VA_Illustrated
- VA_%Illustrated
- VA_Articled
- VA_%Articled
- VA_Stubs
- VA_NRIS-only
- VA_Start+
- VA_%Start+
- VA_Unassessed
- VA_Untagged
- VA_Net_Quality
- WA_Total
- WA_Illustrated
- WA_%Illustrated
- WA_Articled
- WA_%Articled
- WA_Stubs
- WA_NRIS-only
- WA_Start+
- WA_%Start+
- WA_Unassessed
- WA_Untagged
- WA_Net_Quality
- WV_Total
- WV_Illustrated
- WV_%Illustrated
- WV_Articled
- WV_%Articled
- WV_Stubs
- WV_NRIS-only
- WV_Start+
- WV_%Start+
- WV_Unassessed
- WV_Untagged
- WV_Net_Quality
- WI_Total
- WI_Illustrated
- WI_%Illustrated
- WI_Articled
- WI_%Articled
- WI_Stubs
- WI_NRIS-only
- WI_Start+
- WI_%Start+
- WI_Unassessed
- WI_Untagged
- WI_Net_Quality
- WY_Total
- WY_Illustrated
- WY_%Illustrated
- WY_Articled
- WY_%Articled
- WY_Stubs
- WY_NRIS-only
- WY_Start+
- WY_%Start+
- WY_Unassessed
- WY_Untagged
- WY_Net_Quality
- PR_Total
- PR_Illustrated
- PR_%Illustrated
- PR_Articled
- PR_%Articled
- PR_Stubs
- PR_NRIS-only
- PR_Start+
- PR_%Start+
- PR_Unassessed
- PR_Untagged
- PR_Net_Quality
- GU_Total
- GU_Illustrated
- GU_%Illustrated
- GU_Articled
- GU_%Articled
- GU_Stubs
- GU_NRIS-only
- GU_Start+
- GU_%Start+
- GU_Unassessed
- GU_Untagged
- GU_Net_Quality
- VI_Total
- VI_Illustrated
- VI_%Illustrated
- VI_Articled
- VI_%Articled
- VI_Stubs
- VI_NRIS-only
- VI_Start+
- VI_%Start+
- VI_Unassessed
- VI_Untagged
- VI_Net_Quality
- MP_Total
- MP_Illustrated
- MP_%Illustrated
- MP_Articled
- MP_%Articled
- MP_Stubs
- MP_NRIS-only
- MP_Start+
- MP_%Start+
- MP_Unassessed
- MP_Untagged
- MP_Net_Quality
- AS_Total
- AS_Illustrated
- AS_%Illustrated
- AS_Articled
- AS_%Articled
- AS_Stubs
- AS_NRIS-only
- AS_Start+
- AS_%Start+
- AS_Unassessed
- AS_Untagged
- AS_Net_Quality
- FM_Total
- FM_Illustrated
- FM_%Illustrated
- FM_Articled
- FM_%Articled
- FM_Stubs
- FM_NRIS-only
- FM_Start+
- FM_%Start+
- FM_Unassessed
- FM_Untagged
- FM_Net_Quality
- PW_Total
- PW_Illustrated
- PW_%Illustrated
- PW_Articled
- PW_%Articled
- PW_Stubs
- PW_NRIS-only
- PW_Start+
- PW_%Start+
- PW_Unassessed
- PW_Untagged
- PW_Net_Quality
- MH_Total
- MH_Illustrated
- MH_%Illustrated
- MH_Articled
- MH_%Articled
- MH_Stubs
- MH_NRIS-only
- MH_Start+
- MH_%Start+
- MH_Unassessed
- MH_Untagged
- MH_Net_Quality
- UM_Total
- UM_Illustrated
- UM_%Illustrated
- UM_Articled
- UM_%Articled
- UM_Stubs
- UM_NRIS-only
- UM_Start+
- UM_%Start+
- UM_Unassessed
- UM_Untagged
- UM_Net_Quality