Module:Road data/strings/USA/regional/GRR

--[==[

To inspect the content of this data module, use Special:ExpandTemplates

and enter the following input text:

{{#invoke:Road data/dump|dump|module=Module:}}

To inspect the content of this data module when editing, enter the following

into the Debug console:

local util = require("Module:Road data/util")

print(util.arrayToString(p))

To inspect a particular route type, change `p` above to include the route type,

e.g., `p.I` and `p["US-Hist"]`.

]==]

-- Great River Road

local GRR = {}

local util = require("Module:Road data/util")

GRR.GRR = {

shield = "GreatRiverRoad.svg",

name = "Great River Road",

link = "Great River Road",

abbr = "Great River Road[route|| (%route% Route)|]",

banner = {

arg = "route",

National = "National Route plate.svg",

["Alternate National"] = "Alternate plate.svg",

Alternate = "Alternate plate.svg"

},

bannersuffix = "Vermont",

nbrowse = "Scenic Byways",

nbrowselinks = {

[1] = "National",

[2] = "National Forest",

[3] = "BLM",

[4] = "NPS",

}

}

GRR["GRR-Spur"] = {

shield = "GreatRiverRoad brown.svg",

link = "Great River Road",

abbr = "Great River Road Spur",

banner = "Spur plate brown.svg",

bannersuffix = "brown",

nbrowse = GRR.GRR.nbrowse,

nbrowselinks = GRR.GRR.nbrowselinks

}

return GRR