--[==[ To inspect the content of this data module, use [[Special:ExpandTemplates]]and enter the following input text:
To inspect the content of this data module when editing, enter the followinginto 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"]`.]
-- Floridalocal FL =
local util = require("Module:Road data/util")util.addAll(FL, require("Module:Road data/strings/USA"))
local suffix = " ([dab||%dab%, |]Florida)"local suffix2 = " [dab||(%dab%)|]"local ctdab = " ([county||%county% County, |]Florida)"
FL.I.link =
for k, v in pairs(FL) do if k:find ("^I") then v.link = FL.I.link endendFL["I-Express"].link = "Interstate %route% Express (Florida)"
FL.US.name = "U.S. Highway %route%"FL.US.link =
FL["US 1961"].shield = "US %route% (FL).svg" --colored shieldsFL["US 1964"] = FL["US 1961"]
for k, v in pairs(FL) do if k:find ("^US %d") then v.name = FL.US.name v.link = FL.US.link endend
for _,auxType in ipairs do local spec = FL[" aux "][auxType] for k, v in pairs(FL) do if k:find (auxType) then if k:find ("^US") then v.name = FL.US.name .. " " .. spec.name v.link = FL.US.base .. " " .. spec.name .. suffix v.banner = spec.banneralt .. " plate.svg" end end endend
for _,type in ipairs do for _,auxType in ipairs do local spec = FL[" aux "][auxType] FL[type .. "-" .. auxType] = endendFL["US-Alt 1964"] = FL["US 1964-Alt"]FL["US-Bus 1964"] = FL["US 1964-Bus"]
FL.SR = FL.FL = FL.SR
for _,type in ipairs do for _,auxType in ipairs do local spec = FL[" aux "][auxType] FL[type .. "-" .. auxType] = endend FL["SR 1955"] = FL["FL 1955"] = FL["SR 1955"]
-- add new types above this line if you want it to have the state highway maintfor k, v in pairs(FL) do if k:find ("^%a") then v.maint = "FDOT" endend
local CFX = "Central Florida Expressway Authority"
FL.Toll =
FL.Both = FL.Dual = FL.Both
FL.CR.shield = FL.CR.shieldmain = FL.CR.link = "County Road %route%" .. ctdabFL.CR.maint = ""
FL["CR-Alt"] =
FL["CR-Old"] =
FL["CR-Truck"] =
FL.SRCR =
FL["City"] =
FL.FLTP =
FL.HEFT =
FL.AL = FL.GA =
FL.null = FL.road
return FL