Module:Jcon/data/sandbox
Appearance
< Module:Jcon | data
This is the module sandbox page for Module:Jcon/data (diff). |
This module is subject to page protection. It is a highly visible module in use by a very large number of pages, or is substituted very frequently. Because vandalism or mistakes would affect many pages, and even trivial editing might cause substantial load on the servers, it is protected from editing. |
This module depends on the following other modules: |
This module contains the data used by Module:Jcon, which is used by Template:Jcon.
local p = {}
local ON = require('Module:Road data/strings/CAN/ON')
-- MTO signs - Table mapping sign names to their image
p.signs = {
['hospital'] = 'Ontario M401.svg',
['airport'] = 'Ontario M502.svg',
['bus'] = 'Ontario M506.svg',
['ferry'] = 'Ontario M508.svg',
['train'] = 'Ontario M509.svg',
['train station'] = 'Ontario M509.svg',
['tch'] = 'TCH-blank.svg'
}
-- Place types to strip when processing road types
p.placeTypes = {
'municipality',
'municipal',
'city',
'township',
'district',
'county',
'counties',
'united counties',
'region',
'regional',
'regional municipality',
'road'
}
-- Map of lowercase types to properly cased types at Module:Road_data/strings/CAN/ON
p.typeMap = {}
for type, _ in pairs(ON) do
p.typeMap[string.lower(type)] = type
end
return p